fix more svelte undefined warnings (#250)
This commit is contained in:
parent
814716cc8d
commit
429df7fbc5
|
@ -51,7 +51,8 @@
|
||||||
},
|
},
|
||||||
data: () => ({
|
data: () => ({
|
||||||
loading: true,
|
loading: true,
|
||||||
accounts: []
|
accounts: [],
|
||||||
|
accountActions: void 0
|
||||||
}),
|
}),
|
||||||
store: () => store,
|
store: () => store,
|
||||||
components: {
|
components: {
|
||||||
|
|
|
@ -157,7 +157,8 @@
|
||||||
isReply: false,
|
isReply: false,
|
||||||
autoFocus: false,
|
autoFocus: false,
|
||||||
sticky: false,
|
sticky: false,
|
||||||
hideBottomBorder: false
|
hideBottomBorder: false,
|
||||||
|
hidden: false
|
||||||
}),
|
}),
|
||||||
store: () => store,
|
store: () => store,
|
||||||
computed: {
|
computed: {
|
||||||
|
|
|
@ -19,6 +19,9 @@
|
||||||
on('postedStatus', this, this.onPostedStatus)
|
on('postedStatus', this, this.onPostedStatus)
|
||||||
onCreateDialog.call(this)
|
onCreateDialog.call(this)
|
||||||
},
|
},
|
||||||
|
data: () => ({
|
||||||
|
title: void 0
|
||||||
|
}),
|
||||||
methods: {
|
methods: {
|
||||||
show,
|
show,
|
||||||
close,
|
close,
|
||||||
|
|
|
@ -144,7 +144,8 @@
|
||||||
shouldAnimate: !process.browser || document.getElementsByClassName('modal-dialog').length < 2,
|
shouldAnimate: !process.browser || document.getElementsByClassName('modal-dialog').length < 2,
|
||||||
fadedIn: false,
|
fadedIn: false,
|
||||||
muted: false,
|
muted: false,
|
||||||
className: void 0
|
className: void 0,
|
||||||
|
title: void 0
|
||||||
}),
|
}),
|
||||||
computed: {
|
computed: {
|
||||||
backdropClass: (fadedIn, shouldAnimate) => {
|
backdropClass: (fadedIn, shouldAnimate) => {
|
||||||
|
|
Loading…
Reference in New Issue