Improved slotCard UI

This commit is contained in:
Stefan Zermatten
2022-06-07 23:27:14 +02:00
parent e7e8f938ed
commit 11f373ddd8
2 changed files with 5 additions and 5 deletions

View File

@@ -24,11 +24,11 @@
<v-card-actions>
<v-spacer />
<v-btn
text
color="primary"
icon
color="accent"
@click.stop="$emit('ignore')"
>
Skip
<v-icon>mdi-close</v-icon>
</v-btn>
</v-card-actions>
</v-card>

View File

@@ -40,7 +40,7 @@ export default {
}, error => {
if (error){
console.error(error);
snackbar(error);
snackbar({text: error.reason || error.message || error.toString()});
}
});
},
@@ -63,7 +63,7 @@ export default {
}, error => {
if (error){
console.error(error);
snackbar(error);
snackbar({text: error.reason || error.message || error.toString()});
}
});
return `slot-child-${newPropertyId}`;