Updates the readonly tags

This commit is contained in:
mateuswetah 2021-11-08 16:45:21 -03:00
parent 70bbebf6b3
commit 2d39bc8446
1 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@
v-for="(filterTag, index) of filterTags" v-for="(filterTag, index) of filterTags"
:key="index" :key="index"
class="filter-tag" class="filter-tag"
:class="{ 'is-readonly': !filterTag.filterId }"> :class="{ 'is-readonly': !filterTag.filterId && filterTag.argType != 'postin' }">
<span class=""> <span class="">
<div class="filter-tag-metadatum-name"> <div class="filter-tag-metadatum-name">
{{ filterTag.metadatumName }} {{ filterTag.metadatumName }}
@ -35,7 +35,7 @@
</div> </div>
</span> </span>
<a <a
v-if="filterTag.filterId" v-if="filterTag.filterId || filterTag.argType == 'postin'"
role="button" role="button"
tabindex="0" tabindex="0"
class="tag is-delete" class="tag is-delete"
@ -212,7 +212,7 @@
} }
} }
&.is-readonly { &.is-readonly {
background-color: var(--tainacan-input-border-color); border-style: dashed;
} }
} }