Skip to content

Commit

Permalink
Fix clipboard copy prop on template form.
Browse files Browse the repository at this point in the history
  • Loading branch information
knadh committed Jan 6, 2024
1 parent bd2990f commit 3711bed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/views/TemplateForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<template v-if="isEditing">
<h4>{{ data.name }}</h4>
<p class="has-text-grey is-size-7">
{{ $t('globals.fields.id') }}: <span data-cy="id"><copy-text :text="data.id" /></span>
{{ $t('globals.fields.id') }}: <span data-cy="id"><copy-text :text="`${data.id}`" /></span>
</p>
</template>
<h4 v-else>
Expand Down

0 comments on commit 3711bed

Please sign in to comment.