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>
import { _ } from "svelte-i18n";
import { clickOutside } from "./outsideclick";
import { clickOutside } from "../base/outsideclick";
import { focusTrap } from "svelte-focus-trap";
import {
RunnerService,

View File

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

View File

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

View File

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

View File

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB