diff options
author | Guillaume <me@gsvd.dev> | 2025-02-27 14:40:12 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-27 19:40:12 +0000 |
commit | 303af554c9bc7b22d5182a6fe9e22192a546cd41 (patch) | |
tree | 4e8540df87abe0f94913be5da22b8cdaa2643ee3 /web_src/js/index.ts | |
parent | 8362a4155929007b8d02b63a2e657557edb08fb9 (diff) | |
download | gitea-303af554c9bc7b22d5182a6fe9e22192a546cd41.tar.gz gitea-303af554c9bc7b22d5182a6fe9e22192a546cd41.zip |
Improve "generate new access token" form (#33730)
Fix: https://github.com/go-gitea/gitea/issues/33519
As discussed in [PR
#33614](https://github.com/go-gitea/gitea/pull/33614), the
ScopedAccessTokenSelector Vue component is not particularly useful.
This PR removes the component and reverts to using HTML templates. It
also introduces some (hopefully) useful refactoring.
The Vue component was causing the UX bug reported in the linked issue.
Required form fields are now properly working, as expected (see
screenshot).

---------
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to 'web_src/js/index.ts')
-rw-r--r-- | web_src/js/index.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/web_src/js/index.ts b/web_src/js/index.ts index b89e596047..032e6ffe1b 100644 --- a/web_src/js/index.ts +++ b/web_src/js/index.ts @@ -68,7 +68,6 @@ import {initColorPickers} from './features/colorpicker.ts'; import {initAdminSelfCheck} from './features/admin/selfcheck.ts'; import {initOAuth2SettingsDisableCheckbox} from './features/oauth2-settings.ts'; import {initGlobalFetchAction} from './features/common-fetch-action.ts'; -import {initScopedAccessTokenCategories} from './features/scoped-access-token.ts'; import { initFootLanguageMenu, initGlobalDropdown, @@ -209,7 +208,6 @@ onDomReady(() => { initUserSettings, initRepoDiffView, initPdfViewer, - initScopedAccessTokenCategories, initColorPickers, initOAuth2SettingsDisableCheckbox, |