mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-14 09:04:56 +08:00
Fix checklists label [SCI-11445]
This commit is contained in:
parent
69541b55dc
commit
b5624b6053
2 changed files with 4 additions and 2 deletions
|
@ -2,13 +2,13 @@
|
|||
<div class="flex flex-col gap-4">
|
||||
<hr class="my-4 w-full">
|
||||
<div>
|
||||
<h5 class="mb-4">{{ i18n.t('forms.show.dropdown_options_label') }}</h5>
|
||||
<h5 class="mb-4">{{ i18n.t('forms.show.checklist_options_label') }}</h5>
|
||||
<div class="sci-input-container-v2 h-40" :class="{'error': !validField}" :data-error="optionFieldErrors">
|
||||
<textarea
|
||||
class="sci-input"
|
||||
v-model="options"
|
||||
@change="$emit('updateField')"
|
||||
:placeholder="i18n.t('forms.show.dropdown_options_placeholder_html')" />
|
||||
:placeholder="i18n.t('forms.show.checklist_options_placeholder_html')" />
|
||||
</div>
|
||||
</div>
|
||||
<hr class="my-4 w-full">
|
||||
|
|
|
@ -1126,6 +1126,8 @@ en:
|
|||
unpublish: 'Unpublish'
|
||||
dropdown_options_label: 'Dropdown options'
|
||||
dropdown_options_placeholder_html: "Enter dropdown list options one per line:\nDropdown list option\nDropdown list option\n..."
|
||||
checklist_options_label: 'Checklist options'
|
||||
checklist_options_placeholder_html: "Enter checklist items one per line:\nChecklist item\nChecklist item\n..."
|
||||
unit_label: 'Unit'
|
||||
unit_placeholder: 'Add a unit'
|
||||
time_label: 'Include time'
|
||||
|
|
Loading…
Add table
Reference in a new issue