Skip to content

Commit

Permalink
fix: remived changes from another task [WTEL-4505]
Browse files Browse the repository at this point in the history
  • Loading branch information
lizacoma committed May 16, 2024
1 parent 64f1618 commit 7b15182
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
/>
<wt-input
:label="$t('webitelUI.auditForm.score', 1)"
:label-props="{ hint: $t('webitelUI.auditForm.scoreInputTooltip', { min: minScore, max: maxScore}), hintPosition: 'right' }"
:label-props="{ hint: $t('scorecards.scoreInputTooltip', { min: minScore, max: maxScore}), hintPosition: 'right' }"
:value="option.score"
:v="v$.option.score"
:number-min="minScore"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
:number-min="0"
:number-max="9"
:label="$t('reusable.from')"
:label-props="{ hint: $t('webitelUI.auditForm.scoreInputTooltip', { min: '0', max: '9'}), hintPosition: 'right' }"
:label-props="{ hint: $t('scorecards.scoreInputTooltip', { min: '0', max: '9'}), hintPosition: 'right' }"
type="number"
required
@input="updateQuestion({ path: 'min', value: $event })"
Expand All @@ -21,7 +21,7 @@
:number-min="1"
:number-max="10"
:label="$t('reusable.to')"
:label-props="{ hint: $t('webitelUI.auditForm.scoreInputTooltip', { min: '1', max: '10'}), hintPosition: 'right' }"
:label-props="{ hint: $t('scorecards.scoreInputTooltip', { min: '1', max: '10'}), hintPosition: 'right' }"
type="number"
required
@input="updateQuestion({ path: 'max', value: $event })"
Expand Down

0 comments on commit 7b15182

Please sign in to comment.