PaneCP: show synthesis errors from status.json when frozen

This commit is contained in:
c0dev0id
2026-07-13 20:49:03 +02:00
parent d8e6e7a02c
commit f18f07dc22

View File

@@ -116,9 +116,11 @@ export const PaneCP = {
})
) : null,
// Import / export errors
// Import / export / synthesis errors
importError.value ? h('div', { class: 'se-error' }, importError.value) : null,
exportError.value ? h('div', { class: 'se-error' }, exportError.value) : null,
store.synthesisStatus?.frozen && store.synthesisStatus.errors
? h('div', { class: 'se-error' }, store.synthesisStatus.errors) : null,
// Export log (shown after export, cleared on next import)
store.exportLog?.length