Formatting

ref #48
This commit is contained in:
Nicolai Ort 2021-02-25 20:45:37 +01:00
parent 1124f25ea3
commit cd9a5469fd

View File

@ -6,9 +6,11 @@
$: searchvalue = ""; $: searchvalue = "";
$: active_deletes = []; $: active_deletes = [];
export let current_groups = []; export let current_groups = [];
const groups_promise = UserGroupService.userGroupControllerGetAll().then((val) => { const groups_promise = UserGroupService.userGroupControllerGetAll().then(
current_groups = val; (val) => {
}); current_groups = val;
}
);
</script> </script>
{#if store.state.jwtinfo.userdetails.permissions.includes('USERGROUP:GET')} {#if store.state.jwtinfo.userdetails.permissions.includes('USERGROUP:GET')}