Skip to content

Commit 5a4f618

Browse files
authored
fix(users): update API endpoint to use UUID (#989)
- Changed username to UUID in API call
1 parent b1452ee commit 5a4f618

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/components/admin_next/users/AdminUserDetail.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
}
110110
111111
const submitUserForm = async () => {
112-
const { data } = await useFetchApi(`/user/${user.value.username}`, {
112+
const { data } = await useFetchApi(`/user/${user.value.uuid}`, {
113113
headers: {
114114
'Content-Type': 'application/json'
115115
},

0 commit comments

Comments
 (0)