Lock file maintenance (#6709)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: qwerty287 <qwerty287@posteo.de>
This commit is contained in:
renovate[bot]
2026-06-08 10:19:33 +02:00
committed by GitHub
co-authored by lnx01 qwerty287
parent 327868615d
commit cf44ce8f84
3 changed files with 272 additions and 271 deletions
+268 -267
View File
File diff suppressed because it is too large Load Diff
@@ -68,7 +68,7 @@
@click="collapseAll"
/>
</template>
<IconButton class="hover:bg-white/10! md:hidden!" icon="close" @click="$emit('update:step-id', null)" />
<IconButton class="hover:bg-white/10! md:hidden!" icon="close" @click="$emit('update:stepId', null)" />
</div>
</div>
@@ -205,7 +205,7 @@ const props = defineProps<{
}>();
defineEmits<{
(event: 'update:step-id', stepId: number | null): true;
(event: 'update:stepId', stepId: number | null): true;
}>();
const notifications = useNotifications();
@@ -110,7 +110,7 @@
'bg-wp-control-neutral-200': selectedStepId && selectedStepId === step.pid,
'mt-1': !singleConfig || (workflow.children && step.pid !== workflow.children[0].pid),
}"
@click="$emit('update:selected-step-id', step.pid)"
@click="$emit('update:selectedStepId', step.pid)"
>
<PipelineStatusIcon :service="step.type === StepType.Service" :status="step.state" class="h-4! w-4!" />
<span class="truncate">{{ step.name }}</span>
@@ -142,7 +142,7 @@ const props = defineProps<{
}>();
defineEmits<{
(event: 'update:selected-step-id', selectedStepId: number): void;
(event: 'update:selectedStepId', selectedStepId: number): void;
}>();
const pipeline = toRef(props, 'pipeline');