loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

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)

(cherry picked from commit 4eb86d68233241d53cff1009ecff17ac35efccd4)

authored by

silverwind and committed by
Earl Warren
d67e7ae2 8d2b7646

+1 -1
+1 -1
web_src/js/components/ContextPopup.vue
··· 103 103 </script> 104 104 <template> 105 105 <div ref="root"> 106 - <div v-if="loading" class="ui active centered inline loader"/> 106 + <div v-if="loading" class="tw-h-12 tw-w-12 is-loading"/> 107 107 <div v-if="!loading && issue !== null"> 108 108 <p><small>{{ issue.repository.full_name }} on {{ createdAt }}</small></p> 109 109 <p><svg-icon :name="icon" :class="['text', color]"/> <strong>{{ issue.title }}</strong> #{{ issue.number }}</p>