Skip to content

Commit 4f50fc9

Browse files
authored
fix: rotate the right direction (#152)
1 parent 9decc74 commit 4f50fc9

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

app/components/OperationsQueue.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ function getStatusIcon(status: string): string {
9292
case 'approved':
9393
return 'i-carbon-checkmark'
9494
case 'running':
95-
return 'i-carbon-rotate'
95+
return 'i-carbon-rotate-180'
9696
case 'completed':
9797
return 'i-carbon-checkmark-filled'
9898
case 'failed':

app/components/OrgMembersPanel.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ watch(lastExecutionTime, () => {
387387
<!-- Loading state -->
388388
<div v-if="isLoading && memberList.length === 0" class="p-8 text-center">
389389
<span
390-
class="i-carbon-rotate block w-5 h-5 text-fg-muted animate-spin mx-auto"
390+
class="i-carbon-rotate-180 block w-5 h-5 text-fg-muted animate-spin mx-auto"
391391
aria-hidden="true"
392392
/>
393393
<p class="font-mono text-sm text-fg-muted mt-2">Loading members…</p>

app/components/OrgTeamsPanel.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ watch(lastExecutionTime, () => {
327327
<!-- Loading state -->
328328
<div v-if="isLoadingTeams && teams.length === 0" class="p-8 text-center">
329329
<span
330-
class="i-carbon-rotate block w-5 h-5 text-fg-muted animate-spin mx-auto"
330+
class="i-carbon-rotate-180 block w-5 h-5 text-fg-muted animate-spin mx-auto"
331331
aria-hidden="true"
332332
/>
333333
<p class="font-mono text-sm text-fg-muted mt-2">Loading teams…</p>
@@ -382,7 +382,7 @@ watch(lastExecutionTime, () => {
382382
</span>
383383
<span
384384
v-if="isLoadingUsers[teamName]"
385-
class="i-carbon-rotate w-3 h-3 text-fg-muted animate-spin"
385+
class="i-carbon-rotate-180 w-3 h-3 text-fg-muted animate-spin"
386386
aria-hidden="true"
387387
/>
388388
</button>

app/components/PackageAccessControls.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ watch(
173173
<!-- Loading state -->
174174
<div v-if="isLoadingCollaborators && collaboratorList.length === 0" class="py-4 text-center">
175175
<span
176-
class="i-carbon-rotate block w-4 h-4 text-fg-muted animate-spin mx-auto"
176+
class="i-carbon-rotate-180 block w-4 h-4 text-fg-muted animate-spin mx-auto"
177177
aria-hidden="true"
178178
/>
179179
</div>

app/components/PackageVersions.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ function getTagVersions(tag: string): VersionDisplay[] {
436436
<span
437437
class="w-4 h-4 flex items-center justify-center text-fg-subtle hover:text-fg transition-colors"
438438
>
439-
<span v-if="otherVersionsLoading" class="i-carbon-rotate w-3 h-3 animate-spin" />
439+
<span v-if="otherVersionsLoading" class="i-carbon-rotate-180 w-3 h-3 animate-spin" />
440440
<span
441441
v-else
442442
class="w-3 h-3 transition-transform duration-200"

0 commit comments

Comments
 (0)