fix ts lint warning: Strings must use singlequote
This commit is contained in:
@@ -242,7 +242,7 @@ function isManager(userId: number) {
|
||||
|
||||
const getUsers = async () => {
|
||||
loading.value = true;
|
||||
const result = await api.get(`api/v1/users`);
|
||||
const result = await api.get('api/v1/users');
|
||||
allUsers.value = result.data.data.map(itemToDisplay);
|
||||
loading.value = false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user