Skip to content

Commit

Permalink
Wrap untranslated strings in translation method
Browse files Browse the repository at this point in the history
  • Loading branch information
mcraeteisha committed Feb 8, 2024
1 parent cd2a38e commit bb19181
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/renderer/form-empty-table.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{{ $t(title) }}
</span>
<b-link v-if="url !== ''" @click="openLink()">
{{ linkText }}
{{ $t(linkText) }}
</b-link>
</div>
</template>
Expand Down
2 changes: 1 addition & 1 deletion src/components/renderer/form-list-table.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class="avatar-text"
></b-avatar>
<p class="control-text mb-0" :style="dataControl.colorText">
{{ title }}
{{ $t(title) }}
</p>
<template v-if="dataControl.dropdownShow === 'requests'">
<b-dropdown variant="outline-secondary" no-caret>
Expand Down

0 comments on commit bb19181

Please sign in to comment.