Merge pull request #359 from greyhoof/browser-option

Fixed browser option window contents not showing up
This commit is contained in:
hearmeneigh 2024-07-05 18:07:39 -07:00 committed by GitHub
commit 27e2691804
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 7 deletions

View File

@ -81,18 +81,12 @@ import l from '../chat/localize';
import {GeneralSettings} from './common';
import fs from "fs";
import path from "path";
import Modal from "../components/Modal.vue";
import modal from "../components/Modal.vue";
import tabs from "../components/tabs";
import logs from "../chat/Logs.vue";
import chat from "../chat/ChatView.vue";
import {ipcRenderer} from "electron";
import {EIconStore} from "../learn/eicon/store";
import log from "electron-log";
const browserWindow = remote.getCurrentWindow();
@Component({
components: {chat, logs, modal, tabs, Modal}
components: {}
})
export default class BrowserOption extends Vue {
settings!: GeneralSettings;