Skip to content

Commit

Permalink
style: separate placeholder string
Browse files Browse the repository at this point in the history
Signed-off-by: Cleopatra Enjeck M <[email protected]>
  • Loading branch information
enjeck committed Jan 6, 2024
1 parent 889cda7 commit 69f244b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/modules/modals/CreateRow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
:value.sync="row[column.id]" />
<NcNoteCard v-if="column.mandatory && !isValueValidForColumn(row[column.id], column)"
type="error">
{{ t('tables', `"${column.title}" should not be empty`) }}
{{ t('tables', '"{columnTitle}" should not be empty', { columnTitle: column.title }) }}
</NcNoteCard>
</div>
<div class="row">
Expand Down
2 changes: 1 addition & 1 deletion src/modules/modals/EditRow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
:value.sync="localRow[column.id]" />
<NcNoteCard v-if="column.mandatory && !isValueValidForColumn(localRow[column.id], column)"
type="error">
{{ t('tables', `"${column.title}" should not be empty`) }}
{{ t('tables', '"{columnTitle}" should not be empty', { columnTitle: column.title }) }}
</NcNoteCard>
</div>
<div class="row">
Expand Down

0 comments on commit 69f244b

Please sign in to comment.