Skip to content

Commit

Permalink
Fix loading spinner on ContextPopup (#30145)
Browse files Browse the repository at this point in the history
  • Loading branch information
silverwind authored Mar 27, 2024
1 parent c85619b commit 4eb86d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web_src/js/components/ContextPopup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 4eb86d6

Please sign in to comment.