Skip to content

Commit

Permalink
fix: fix missing icon for view log button
Browse files Browse the repository at this point in the history
  • Loading branch information
jiegec committed Mar 14, 2024
1 parent e8d8135 commit 83e65a7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/pages/jobs/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,12 @@
</template>
<template #item.actions="{ item }">
<v-btn
icon="mdi:mdi-history"
icon="true"
rounded
size="x-small"
v-if="(item as Job).log_url !== null && (item as Job).log_url !== undefined"
:to="{ path: (item as Job).log_url.replace('https://buildit.aosc.io/logs/', '/web-logs/') }">
<v-icon>mdi:mdi-history</v-icon>
<v-tooltip activator="parent" location="bottom">
View Log
</v-tooltip>
Expand Down

0 comments on commit 83e65a7

Please sign in to comment.