ref #12
This commit is contained in:
@@ -19,7 +19,6 @@
|
||||
.then((response) => response.json())
|
||||
.then((json) => {
|
||||
licenses = json;
|
||||
console.log(json);
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
@@ -6,9 +6,6 @@
|
||||
import PromiseError from "./PromiseError.svelte";
|
||||
export let params;
|
||||
const user_promise = UserService.userControllerGetOne(params.userid);
|
||||
tracksstore.subscribe((val) => {
|
||||
userscache = val;
|
||||
});
|
||||
user_promise.then((data) => {
|
||||
console.log(data);
|
||||
tracksstore.set(data);
|
||||
@@ -2,7 +2,7 @@
|
||||
import { _ } from "svelte-i18n";
|
||||
import AddUserModal from "./AddUserModal.svelte";
|
||||
export let modal_open = false;
|
||||
import UsersDetail from "./UsersDetail.svelte";
|
||||
import UsersOverview from "./UsersOverview.svelte";
|
||||
</script>
|
||||
|
||||
<section class="container p-5">
|
||||
@@ -20,6 +20,6 @@
|
||||
<p class="mb-8 text-lg text-gray-500">
|
||||
manage admin users
|
||||
</p>
|
||||
<UsersDetail />
|
||||
<UsersOverview />
|
||||
</section>
|
||||
<AddUserModal bind:modal_open />
|
||||
|
||||
Reference in New Issue
Block a user