Skip to content

Commit

Permalink
feat(ui): rename value to iteration value on output tabs (#2070)
Browse files Browse the repository at this point in the history
close #2066
  • Loading branch information
Heman Sakkthivel M S authored Sep 8, 2023
1 parent b2fcf42 commit a2c81b2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/components/executions/ExecutionOutput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
</template>
</el-table-column>

<el-table-column prop="value" sortable :label="$t('value')">
<el-table-column prop="value" sortable :label="$t('each value')">
<template #default="scope">
<var>{{ scope.row.value }}</var>
</template>
Expand Down
2 changes: 2 additions & 0 deletions ui/src/translations.json
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@
"name": "Name",
"key": "Key",
"value": "Value",
"each value": "Iteration value",
"current execution": "Current execution",
"parent execution": "Parent execution",
"original execution": "Original execution",
Expand Down Expand Up @@ -661,6 +662,7 @@
"name": "Nom",
"key": "Clé",
"value": "Valeur",
"each value": "Valeur d'itération",
"current execution": "Execution en cours",
"parent execution": "Execution parente",
"original execution": "Execution d'origine",
Expand Down

0 comments on commit a2c81b2

Please sign in to comment.