Skip to content

Commit

Permalink
fix: fix status color for workflow activator with could not be starte…
Browse files Browse the repository at this point in the history
…d status
  • Loading branch information
alexgrozav committed Oct 18, 2022
1 parent bcc61f7 commit 3930bc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/editor-ui/src/components/WorkflowActivator.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="workflow-activator">
<div :class="$style.activeStatusText">
<n8n-text v-if="workflowActive" color="success" size="small" bold>
<n8n-text v-if="workflowActive" :color="couldNotBeStarted ? 'danger' : 'success'" size="small" bold>
{{ $locale.baseText('workflowActivator.active') }}
</n8n-text>
<n8n-text v-else color="text-base" size="small" bold>
Expand Down

0 comments on commit 3930bc6

Please sign in to comment.