Skip to content

Commit

Permalink
Update unit field description
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Hotze <florianh_dev@icloud.com>
  • Loading branch information
florian-h05 committed Oct 22, 2023
1 parent a36418f commit 16c6c02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</select>
</f7-list-item>
<f7-list-input v-if="item.groupType && item.groupType.startsWith('Number:') && createMode" label="Unit" type="text" :value="item.unit"
info="Used internally and for persistence & API(s). It is independent from the state description, which is used for display purposes only."
info="Used internally, for persistence and external systems. It is independent from the state visualization in the UI, which is defined through the state description."
@input="item.unit = $event.target.value" clear-button />
<f7-list-input v-if="item.type && item.type.startsWith('Number:') && createMode" label="State Description Pattern" type="text" :value="item.stateDescriptionPattern"
info="Pattern or transformation applied to the state for display purposes."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</f7-list-item>
<!-- Use v-show instead of v-if, because otherwise the autocomplete for category would take over the unit -->
<f7-list-input v-show="!hideType && item.type && item.type.startsWith('Number:') && createMode" label="Unit" type="text" :value="item.unit"
info="Used internally and for persistence & API(s). It is independent from the state description, which is used for display purposes only."
info="Used internally, for persistence and external systems. It is independent from the state visualization in the UI, which is defined through the state description."
@input="item.unit = $event.target.value" clear-button />
<f7-list-input v-show="!hideType && item.type && item.type.startsWith('Number:') && createMode" label="State Description Pattern" type="text" :value="item.stateDescriptionPattern"
info="Pattern or transformation applied to the state for display purposes."
Expand Down

0 comments on commit 16c6c02

Please sign in to comment.