refactor(editor): Stop expecting null execution status (no-changelog) (#9672)
This commit is contained in:
@@ -51,7 +51,7 @@ const isRetriable = computed(() => executionHelpers.isExecutionRetriable(props.e
|
||||
const classes = computed(() => {
|
||||
return {
|
||||
[style.executionListItem]: true,
|
||||
[style[props.execution.status ?? '']]: !!props.execution.status,
|
||||
[style[props.execution.status]]: true,
|
||||
};
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user