Client - update getting oauth client by id

This commit is contained in:
Sam
2022-06-07 08:53:04 +02:00
parent 458394fa53
commit 03db8e8cd6
4 changed files with 10 additions and 7 deletions

View File

@ -97,7 +97,10 @@
function loadClient() {
if (route.params.clientId && typeof route.params.clientId === 'string') {
store.dispatch(OAUTH2_STORE.ACTIONS.GET_CLIENT, route.params.clientId)
store.dispatch(
OAUTH2_STORE.ACTIONS.GET_CLIENT_BY_ID,
+route.params.clientId
)
}
}
function deleteClient(clientId: number) {