[UI] Fix scoped-access-token

- Regression of #4571
- Refactor to not use the component API of Vue. The root cause is still
unknown.
This commit is contained in:
Gusted 2024-07-24 21:48:51 +02:00
parent ea1a0ebbc3
commit aa5163d5c4
No known key found for this signature in database
GPG key ID: FD821B732837125F
2 changed files with 13 additions and 12 deletions

View file

@ -78,10 +78,13 @@ export default sfc;
* Initialize category toggle sections
*/
export function initScopedAccessTokenCategories() {
for (const el of document.getElementsByClassName('scoped-access-token-mount')) {
createApp({})
.component('scoped-access-token-selector', sfc)
.mount(el);
for (const el of document.getElementsByClassName('scoped-access-token')) {
createApp(sfc, {
isAdmin: el.getAttribute('data-is-admin') === 'true',
noAccessLabel: el.getAttribute('data-no-access-label'),
readLabel: el.getAttribute('data-read-label'),
writeLabel: el.getAttribute('data-write-label'),
}).mount(el);
}
}