Skip to content

Commit

Permalink
Semantic model: Remove duplicate non-semantic tags in Item component (#…
Browse files Browse the repository at this point in the history
…2095)

Changes introduced into #2087 in combination with #2093 create duplicity
in showing non-semantic tags in the model page
(component/model/item-details.vue).
Non-semantic tags are displayed both in the Item and when edit mode is
enabled, in the accordion tag input in item-form.

Signed-off-by: David Kesl <[email protected]>
  • Loading branch information
Davek145 authored Sep 27, 2023
1 parent eee0277 commit c402d32
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<f7-card-content>
<f7-list media-list accordion-list>
<ul>
<item v-if="!createMode" :item="model.item" :link="'/settings/items/' + model.item.name" :context="context" />
<item v-if="!createMode" :item="model.item" :link="'/settings/items/' + model.item.name" :context="context" :no-tags="editMode" />
<!-- <f7-list-button v-if="!editMode && !createMode" color="blue" title="Edit Item" @click="editMode = true">Edit Item</f7-list-button> -->
</ul>
</f7-list>
Expand Down

0 comments on commit c402d32

Please sign in to comment.