Skip to content

Commit 4eb86d6

Browse files
authored
Fix loading spinner on ContextPopup (#30145)
Fix regression from #26670. Here with simulated delay: ![](https://github.com/go-gitea/gitea/assets/115237/9de5a136-c8a6-4d69-adc7-07e1184e3311)
1 parent c85619b commit 4eb86d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web_src/js/components/ContextPopup.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ export default {
103103
</script>
104104
<template>
105105
<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"/>
107107
<div v-if="!loading && issue !== null">
108108
<p><small>{{ issue.repository.full_name }} on {{ createdAt }}</small></p>
109109
<p><svg-icon :name="icon" :class="['text', color]"/> <strong>{{ issue.title }}</strong> #{{ issue.number }}</p>

0 commit comments

Comments
 (0)