Temporary disable tag selection on click

This commit is contained in:
Jan Oberhauser 2021-05-29 13:37:04 -05:00
parent 05eec87d1d
commit 8e793e27b3
2 changed files with 6 additions and 7 deletions

View file

@ -6,7 +6,6 @@
v-for="tag in tags"
:key="tag.id"
:class="{clickable: !tag.hidden}"
@click="(e) => onClick(e, tag)"
>
<el-tag
:title="tag.title"

View file

@ -32,7 +32,7 @@
<template slot-scope="scope">
<div :key="scope.row.id">
<span class="name">{{scope.row.name}}</span>
<TagsContainer class="hidden-sm-and-down" :tagIds="getIds(scope.row.tags)" :limit="3" @click="onTagClick" :hoverable="true"/>
<TagsContainer class="hidden-sm-and-down" :tagIds="getIds(scope.row.tags)" :limit="3" @click="onTagClick" />
</div>
</template>
</el-table-column>