1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-07 23:05:26 +02:00

fix(account): enable add access token button EE-7059 (#11745)

This commit is contained in:
Dakota Walsh 2024-05-08 17:07:44 -04:00 committed by GitHub
parent 5a5a10821d
commit 4ef71f4aca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 7 additions and 12 deletions

View file

@ -26,7 +26,8 @@ export const accountModule = angular
)
.component(
'accessTokensDatatable',
r2a(withUIRouter(withReactQuery(withCurrentUser(AccessTokensDatatable))), [
'canExit',
])
r2a(
withUIRouter(withReactQuery(withCurrentUser(AccessTokensDatatable))),
[]
)
).name;