Skip to content
Snippets Groups Projects
Commit bf605ef9 authored by Alexis Poyen's avatar Alexis Poyen
Browse files

fix : import and function call

parent 68cbb7de
Branches
No related tags found
No related merge requests found
// Imports
import { RandomString } from "/services/common/common.js";
import * as Messages from "/services/messages/messages.js";
import * as Auth from "/services/auth/auth.js";
import * as Users from "/components/users/users.js";
......@@ -249,7 +250,7 @@ class HandleUser {
let client = await Auth.getClientByUserID(user.id, current_user);
if (client != undefined) this.parent.HandleClient.editClient(client);
else this.parent.HandleClient.newClient(user.id);
} else Users.displayUsers();
} else this.parent.displayUsers();
} catch (e) {
Messages.Show("is-warning", e.message);
console.error(e);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment