mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-09 00:49:07 +08:00
Fix PR after merge [SCI-10508]
This commit is contained in:
parent
4ac9540c3a
commit
d2c811fe7f
2 changed files with 6 additions and 0 deletions
|
@ -11,6 +11,7 @@
|
|||
:with-checkboxes="true"
|
||||
:multiple="true"
|
||||
:clearable="true"
|
||||
:searchable="true"
|
||||
:size="'sm'"
|
||||
>
|
||||
</select-dropdown>
|
||||
|
@ -93,6 +94,10 @@ export default {
|
|||
});
|
||||
},
|
||||
handleChange(selectedChecklistItemsIds) {
|
||||
if (selectedChecklistItemsIds instanceof Event) {
|
||||
return;
|
||||
}
|
||||
|
||||
this.selectedChecklistItemsIds = selectedChecklistItemsIds;
|
||||
this.update(selectedChecklistItemsIds);
|
||||
}
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
ref="DropdownSelector"
|
||||
:options="options"
|
||||
:searchable="true"
|
||||
:clearable="true"
|
||||
:placeholder="i18n.t('repositories.item_card.dropdown_placeholder')"
|
||||
:no-options-placeholder="i18n.t('repositories.item_card.dropdown_placeholder')"
|
||||
:data-e2e="'e2e-DD-repoItemSBcustomColumns-input' + colId"
|
||||
|
|
Loading…
Reference in a new issue