Skip to content

Commit db7a85e

Browse files
committed
fix(web/admin): breadcrumb aria-current, move refresh button margin to scoped CSS
1 parent 31c6092 commit db7a85e

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

apps/web/src/views/AdminQueueView.vue

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ onMounted(() => {
185185
<span class="admin-queue__breadcrumb-sep">/</span>
186186
<span class="admin-queue__breadcrumb-lab">{{ resolvedLabId }}</span>
187187
<span class="admin-queue__breadcrumb-sep">/</span>
188-
<span>Queue</span>
188+
<span aria-current="page">Queue</span>
189189
</nav>
190190

191191
<div class="admin-queue__panel">
@@ -196,7 +196,7 @@ onMounted(() => {
196196
<button type="button" class="button button--secondary" :disabled="actionBusy !== ''" @click="exportGrades">
197197
{{ actionBusy === 'export' ? 'Exporting…' : '↓ Export grades' }}
198198
</button>
199-
<button type="button" class="button button--secondary" style="margin-left:auto" :disabled="loading" @click="loadQueue">↻ Refresh</button>
199+
<button type="button" class="button button--secondary admin-queue__refresh" :disabled="loading" @click="loadQueue">↻ Refresh</button>
200200
</div>
201201

202202
<p v-if="actionError" class="admin-queue__status admin-queue__status--error">
@@ -352,6 +352,10 @@ onMounted(() => {
352352
flex-wrap: wrap;
353353
}
354354
355+
.admin-queue__refresh {
356+
margin-left: auto;
357+
}
358+
355359
.admin-queue__summary {
356360
display: flex;
357361
flex-wrap: wrap;

0 commit comments

Comments
 (0)