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