fix reporting modal
This commit is contained in:
parent
05f25c21e0
commit
a077938f73
7 changed files with 30 additions and 42 deletions
|
|
@ -20,6 +20,10 @@ const List = {
|
|||
type: Function,
|
||||
default: () => '',
|
||||
},
|
||||
preSelect: {
|
||||
type: Array,
|
||||
default: [],
|
||||
},
|
||||
nonInteractive: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
|
|
@ -44,7 +48,7 @@ const List = {
|
|||
data() {
|
||||
return {
|
||||
items: [],
|
||||
selected: new Set([]),
|
||||
selected: new Set(this.preSelect),
|
||||
loading: false,
|
||||
bottomedOut: true,
|
||||
error: null,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue