Fix enum imports

This commit is contained in:
Tamius Han 2021-04-01 21:23:59 +02:00
parent 9c1fb77dc8
commit 873a8cf3a8
6 changed files with 6 additions and 6 deletions

View File

@ -116,7 +116,7 @@ import KeyboardShortcutParser from '../js/KeyboardShortcutParser';
export default { export default {
data () { data () {
return { return {
Stretch: Stretch, StretchType: StretchType,
AspectRatio: AspectRatio, AspectRatio: AspectRatio,
} }
}, },

View File

@ -52,7 +52,7 @@ import KeyboardShortcutParser from '../js/KeyboardShortcutParser'
export default { export default {
data () { data () {
return { return {
Stretch: Stretch StretchType: StretchType
} }
}, },
created () { created () {

View File

@ -166,7 +166,7 @@ export default {
}, },
data () { data () {
return { return {
Stretch: Stretch, StretchType: StretchType,
ExtensionMode: ExtensionMode, ExtensionMode: ExtensionMode,
VideoAlignment: VideoAlignment, VideoAlignment: VideoAlignment,
stretchThreshold: 0, stretchThreshold: 0,

View File

@ -121,7 +121,7 @@ export default {
}, },
data () { data () {
return { return {
Stretch: Stretch, StretchType: StretchType,
action: { action: {
name: 'New action', name: 'New action',
label: 'New action', label: 'New action',

View File

@ -121,7 +121,7 @@ export default {
}, },
data () { data () {
return { return {
Stretch: Stretch, StretchType: StretchType,
tableVisibility: { tableVisibility: {
crop: true, crop: true,
} }

View File

@ -94,7 +94,7 @@ import StretchType from '../../../common/enums/StretchType.enum';
export default { export default {
data () { data () {
return { return {
Stretch: Stretch, StretchType: StretchType,
ActionList: ActionList, ActionList: ActionList,
selectedAction: undefined, selectedAction: undefined,
selectedArgument: undefined, selectedArgument: undefined,