fix linting error in ft-input-tags.vue (#2971)

* fix linting error in ft-input-tags.vue

* swap to span over label

* update css to match

Co-authored-by: petaded <code@zikl.co.uk>
This commit is contained in:
petaded 2022-12-19 11:22:06 +00:00 committed by GitHub
parent dd18634fdc
commit 5230fc4fd7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@
float: left;
}
.ft-tag-box li>label {
.ft-tag-box li>span {
padding-top: 10px;
padding-bottom: 10px;
padding-left: 10px;

View File

@ -20,7 +20,7 @@
v-for="tag in tagList"
:key="tag.id"
>
<label>{{ tag }}</label>
<span>{{ tag }}</span>
<font-awesome-icon
:icon="['fas', 'fa-times']"
class="removeTagButton"