diff --git a/src/common/components/ActionAlt.vue b/src/common/components/ActionAlt.vue index 7ccd521..e8aef49 100644 --- a/src/common/components/ActionAlt.vue +++ b/src/common/components/ActionAlt.vue @@ -116,7 +116,7 @@ import KeyboardShortcutParser from '../js/KeyboardShortcutParser'; export default { data () { return { - Stretch: Stretch, + StretchType: StretchType, AspectRatio: AspectRatio, } }, diff --git a/src/common/components/ActionRow.vue b/src/common/components/ActionRow.vue index 9865926..b3d68e8 100644 --- a/src/common/components/ActionRow.vue +++ b/src/common/components/ActionRow.vue @@ -52,7 +52,7 @@ import KeyboardShortcutParser from '../js/KeyboardShortcutParser' export default { data () { return { - Stretch: Stretch + StretchType: StretchType } }, created () { diff --git a/src/options/GeneralSettings.vue b/src/options/GeneralSettings.vue index fb0f3bc..74e6d7a 100644 --- a/src/options/GeneralSettings.vue +++ b/src/options/GeneralSettings.vue @@ -166,7 +166,7 @@ export default { }, data () { return { - Stretch: Stretch, + StretchType: StretchType, ExtensionMode: ExtensionMode, VideoAlignment: VideoAlignment, stretchThreshold: 0, diff --git a/src/options/controls-settings/AddEditActionPopup.vue b/src/options/controls-settings/AddEditActionPopup.vue index 3113653..37761c4 100644 --- a/src/options/controls-settings/AddEditActionPopup.vue +++ b/src/options/controls-settings/AddEditActionPopup.vue @@ -121,7 +121,7 @@ export default { }, data () { return { - Stretch: Stretch, + StretchType: StretchType, action: { name: 'New action', label: 'New action', diff --git a/src/options/controls-settings/ControlsSettings.vue b/src/options/controls-settings/ControlsSettings.vue index f442ca8..749a070 100644 --- a/src/options/controls-settings/ControlsSettings.vue +++ b/src/options/controls-settings/ControlsSettings.vue @@ -121,7 +121,7 @@ export default { }, data () { return { - Stretch: Stretch, + StretchType: StretchType, tableVisibility: { crop: true, } diff --git a/src/options/controls-settings/command-builder/CommandAddEdit.vue b/src/options/controls-settings/command-builder/CommandAddEdit.vue index 97b19e0..7d692eb 100644 --- a/src/options/controls-settings/command-builder/CommandAddEdit.vue +++ b/src/options/controls-settings/command-builder/CommandAddEdit.vue @@ -94,7 +94,7 @@ import StretchType from '../../../common/enums/StretchType.enum'; export default { data () { return { - Stretch: Stretch, + StretchType: StretchType, ActionList: ActionList, selectedAction: undefined, selectedArgument: undefined,