Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 fix capitalization of tags #2928

Merged
merged 1 commit into from
Sep 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading