Skip to content

Commit

Permalink
🐛 fix capitalization of tags
Browse files Browse the repository at this point in the history
  • Loading branch information
MrKrisKrisu committed Sep 24, 2024
1 parent c754b98 commit 82b37f4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions resources/vue/components/TagHelper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ export default {
</template>
</FullScreenModal>

<button v-show="editable" class="btn btn-link btn-sm text-white badge bg-trwl text-capitalize" @click="showModal()">
<button v-show="editable" class="btn btn-link btn-sm text-white badge bg-trwl" @click="showModal()"
style="text-transform: none;"
>
<i class="fa fa-plus"></i>
{{ trans("modals.tags.new") }}
</button>
Expand All @@ -84,7 +86,8 @@ export default {
v-if="editable"
v-for="tag in tags"
:key="tag.key"
class="btn btn-link btn-sm text-white badge bg-trwl ms-1 text-capitalize"
class="btn btn-link btn-sm text-white badge bg-trwl ms-1"
style="text-transform: none;"
@click="showModal(tag)"
>
<i v-show="getIcon(tag.key) !== 'fa-fw'" :class="[getIcon(tag.key), 'fa']"></i>
Expand Down

0 comments on commit 82b37f4

Please sign in to comment.