New folder structure

ref #48
This commit is contained in:
Nicolai Ort 2021-02-25 20:08:32 +01:00
parent 266a11f64f
commit 4dbca6096f
6 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
<script> <script>
import { _ } from "svelte-i18n"; import { _ } from "svelte-i18n";
import { clickOutside } from "./outsideclick"; import { clickOutside } from "../base/outsideclick";
import { focusTrap } from "svelte-focus-trap"; import { focusTrap } from "svelte-focus-trap";
import { import {
RunnerService, RunnerService,

View File

@ -1,12 +1,12 @@
<script> <script>
import { _ } from "svelte-i18n"; import { _ } from "svelte-i18n";
import lodashIsEqual from "lodash.isequal"; import lodashIsEqual from "lodash.isequal";
import store from "../store"; import store from "../../store";
import { import {
UserGroupService UserGroupService
} from "@odit/lfk-client-js"; } from "@odit/lfk-client-js";
import Toastify from "toastify-js"; import Toastify from "toastify-js";
import PromiseError from "./PromiseError.svelte"; import PromiseError from "../base/PromiseError.svelte";
let data_loaded = false; let data_loaded = false;
export let params; export let params;
const promise = UserGroupService.userGroupControllerGetOne(params.groupid); const promise = UserGroupService.userGroupControllerGetOne(params.groupid);

View File

@ -1,6 +1,6 @@
<script> <script>
import { _ } from "svelte-i18n"; import { _ } from "svelte-i18n";
import store from "../store"; import store from "../../store";
import AddGroupModal from "./AddGroupModal.svelte"; import AddGroupModal from "./AddGroupModal.svelte";
import UserGroupsOverview from "./UserGroupsOverview.svelte"; import UserGroupsOverview from "./UserGroupsOverview.svelte";
$: current_groups = []; $: current_groups = [];

View File

@ -1,7 +1,7 @@
<script> <script>
import { _ } from "svelte-i18n"; import { _ } from "svelte-i18n";
import { UserGroupService } from "@odit/lfk-client-js"; import { UserGroupService } from "@odit/lfk-client-js";
import store from "../store"; import store from "../../store";
import UserGroupsEmptyState from "./UserGroupsEmptyState.svelte"; import UserGroupsEmptyState from "./UserGroupsEmptyState.svelte";
$: searchvalue = ""; $: searchvalue = "";
$: active_deletes = []; $: active_deletes = [];

View File

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB