Skip to content
This repository has been archived by the owner on Jan 28, 2022. It is now read-only.

Commit

Permalink
Updated integration settings to use title instead of key for label on…
Browse files Browse the repository at this point in the history
… inputs
  • Loading branch information
Shepless committed May 17, 2020
1 parent ee616c9 commit 585ea2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/sub-menus/add-integration/template.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ <h1 class="title">
</div>
<div v-for="(property, key) in properties" class="setting">
<div class="setting-name">
{{key}}
{{property.title}}
</div>
<div class="setting-value">
<input v-if="property.type === 'string'" class="setting-input" :placeholder="`example: ${property.examples[0]}`" type="text" v-model="propertyValues[key]" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ <h1 class="title">Settings</h1>
<h2 class="integration-title">{{name}}</h2>
<div v-for="(property, key) in properties" class="setting">
<div class="setting-name">
{{key}}
{{property.title}}
</div>
<div class="setting-value">
<input v-if="property.type === 'string'" class="setting-input" :placeholder="`example: ${property.examples[0]}`" type="text" v-model="propertyValues[key]" />
Expand Down

0 comments on commit 585ea2d

Please sign in to comment.