1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-07-21 06:48:04 +00:00

Application settings

This commit is contained in:
2023-01-20 15:35:16 +01:00
parent 6703950734
commit 6c77941ae9
10 changed files with 234 additions and 20 deletions

View File

@ -1,7 +1,6 @@
<script>
import { onMount, tick } from 'svelte';
import { Hosts } from '../../../wailsjs/go/app/App';
import { Environment } from '../../../wailsjs/runtime';
import { input } from '../../actions';
import Modal from '../../components/modal.svelte';
import DatabaseList from './dblist.svelte';
@ -13,7 +12,6 @@
export let activeDbKey = '';
export let activeCollKey = '';
let environment;
let addressBarModalOpen = true;
let dbList;
@ -43,7 +41,6 @@
}
onMount(() => {
Environment().then(e => environment = e);
Hosts().then(h => hosts = h);
});
</script>