Skip to content

Commit 6818e6a

Browse files
Merge pull request #41 from itiden/feature/backup-metadata
Feature/backup metadata
2 parents d331911 + e01b2b1 commit 6818e6a

35 files changed

+1731
-887
lines changed

client/src/components/Listing.vue

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,13 @@
2121
/>
2222

2323
<data-list-table>
24+
<template slot="cell-name" slot-scope="{ row: backup, value }">
25+
<div class="flex items-center">
26+
<svg-icon name="alert" class="h-4 w-4 mr-2 text-orange" v-if="backup.metadata.skipped_pipes.length" v-tooltip="{ content: backup.metadata.skipped_pipes.map(x => `${x.pipe}: ${x.reason}`).join('<br/>'), html:true}"/>
27+
{{ value }}
28+
</div>
29+
</template>
30+
2431
<template
2532
slot="actions"
2633
slot-scope="{ row: backup }"

composer.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,11 @@
5151
"@php vendor/bin/pint"
5252
],
5353
"test": [
54-
"@php vendor/bin/pest"
54+
"XDEBUG_MODE=coverage vendor/bin/pest --coverage"
55+
],
56+
"qa": [
57+
"@lint",
58+
"@test"
5559
]
5660
},
5761
"extra": {

0 commit comments

Comments
 (0)