Skip to content

Commit

Permalink
Merge pull request #16348 from davelopez/23.1_make_public_histories_t…
Browse files Browse the repository at this point in the history
…ags_readonly

[23.1] Make tags in public histories read-only
  • Loading branch information
mvdbeek committed Jun 30, 2023
2 parents a46493a + 2e319ec commit 4d4f87b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/components/History/HistoryPublishedList.vue
Expand Up @@ -35,7 +35,7 @@ const fields = [
{ key: "name", sortable: true },
{ key: "annotation", sortable: false },
{ label: "Owner", key: "username", sortable: false },
{ label: "Community Tags", key: "tags", sortable: false },
{ label: "Tags", key: "tags", sortable: false },
{ label: "Last Updated", key: "update_time", sortable: true },
];
Expand Down Expand Up @@ -210,7 +210,7 @@ watch([filterText, sortBy, sortDesc], () => {
<StatelessTags
clickable
:value="row.item.tags"
:disabled="row.item.deleted"
:disabled="true"
@input="(tags) => onTagsUpdate(tags, row)"
@tag-click="onTagClick" />
</template>
Expand Down

0 comments on commit 4d4f87b

Please sign in to comment.