diff options
author | silverwind <me@silverwind.io> | 2024-03-27 21:18:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-27 20:18:04 +0000 |
commit | 4eb86d68233241d53cff1009ecff17ac35efccd4 (patch) | |
tree | c3463be56214447bb0ac808ad69f040f4db9b4f1 /web_src | |
parent | c85619b82d19a928cb219eba3f38473928b29b0c (diff) | |
download | gitea-4eb86d68233241d53cff1009ecff17ac35efccd4.tar.gz gitea-4eb86d68233241d53cff1009ecff17ac35efccd4.zip |
Fix loading spinner on ContextPopup (#30145)
Fix regression from https://github.com/go-gitea/gitea/pull/26670. Here
with simulated delay:
![](https://github.com/go-gitea/gitea/assets/115237/9de5a136-c8a6-4d69-adc7-07e1184e3311)
Diffstat (limited to 'web_src')
-rw-r--r-- | web_src/js/components/ContextPopup.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web_src/js/components/ContextPopup.vue b/web_src/js/components/ContextPopup.vue index 149cabd41e..d87eb1a180 100644 --- a/web_src/js/components/ContextPopup.vue +++ b/web_src/js/components/ContextPopup.vue @@ -103,7 +103,7 @@ export default { </script> <template> <div ref="root"> - <div v-if="loading" class="ui active centered inline loader"/> + <div v-if="loading" class="tw-h-12 tw-w-12 is-loading"/> <div v-if="!loading && issue !== null"> <p><small>{{ issue.repository.full_name }} on {{ createdAt }}</small></p> <p><svg-icon :name="icon" :class="['text', color]"/> <strong>{{ issue.title }}</strong> #{{ issue.number }}</p> |