fix: refs #8647 add default value for summary prop in WorkerDescriptor component
gitea/salix-front/pipeline/pr-dev This commit is unstable Details

This commit is contained in:
Jorge Penadés 2025-02-28 10:26:39 +01:00
parent abf2a5bb5d
commit 561db9f7c8
1 changed files with 4 additions and 0 deletions

View File

@ -23,6 +23,10 @@ const $props = defineProps({
required: false,
default: 'Worker',
},
summary: {
type: Object,
default: null,
},
});
const image = ref(null);