diff --git a/app/app.ts b/app/app.ts index a708b583c371..63241d1a136b 100644 --- a/app/app.ts +++ b/app/app.ts @@ -25,6 +25,7 @@ import moment from 'moment'; import { setupGlobalContextMenuForEditableElement } from 'util/menus/GlobalMenu'; import VModal from 'vue-js-modal'; import VeeValidate from 'vee-validate'; +import ChildWindow from 'components/windows/ChildWindow.vue'; const { ipcRenderer, remote } = electron; @@ -157,8 +158,9 @@ document.addEventListener('DOMContentLoaded', () => { i18n, store, render: h => { - const componentName = windowsService.state[windowId].componentName; + if (windowId === 'child') return h(ChildWindow); + const componentName = windowsService.state[windowId].componentName; return h(windowsService.components[componentName]); } }); diff --git a/app/components/ApiSettings.vue b/app/components/ApiSettings.vue index d44a763d2998..456ccf8a67ed 100644 --- a/app/components/ApiSettings.vue +++ b/app/components/ApiSettings.vue @@ -7,13 +7,15 @@
- - - +
+ + + +
diff --git a/app/components/AppearanceSettings.vue b/app/components/AppearanceSettings.vue index 27d2bc0e3d70..5416d5806d3a 100644 --- a/app/components/AppearanceSettings.vue +++ b/app/components/AppearanceSettings.vue @@ -1,7 +1,9 @@ diff --git a/app/components/ExperimentalSettings.vue b/app/components/ExperimentalSettings.vue index 8e8625da2ab5..51ce7b5e7d5c 100644 --- a/app/components/ExperimentalSettings.vue +++ b/app/components/ExperimentalSettings.vue @@ -1,11 +1,8 @@ diff --git a/app/components/HotkeyGroup.vue b/app/components/HotkeyGroup.vue index 29f133e9619d..5a037eb9718f 100644 --- a/app/components/HotkeyGroup.vue +++ b/app/components/HotkeyGroup.vue @@ -1,15 +1,19 @@