We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42d2e48 commit 32d2d78Copy full SHA for 32d2d78
site/frontend/src/pages/status_new/collector.vue
@@ -141,7 +141,10 @@ function formatProfile(job: BenchmarkJob): string {
141
</span>
142
<span>{{ formatISODate(collector.dateAdded) }}</span>
143
</div>
144
- <button @click="toggleShowJobs">show jobs</button>
+ <button @click="toggleShowJobs" class="show-jobs">
145
+ <template v-if="showJobs">Hide jobs</template>
146
+ <template v-else>Show jobs</template>
147
+ </button>
148
149
150
<div v-if="showJobs" class="table-collector-wrapper">
0 commit comments