-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor workflow step display stuff toward TS & reuse. #17004
Conversation
watch(props, () => { | ||
initStores(); | ||
}); | ||
initStores(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
watch(props, () => { | |
initStores(); | |
}); | |
initStores(); | |
watch( | |
props, | |
() => { | |
initStores(); | |
}, | |
{ immediate: true } | |
); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Amazing - thank you for this trick!
client/src/components/WorkflowInvocationState/WorkflowStepIcon.vue
Outdated
Show resolved
Hide resolved
@@ -2,9 +2,11 @@ | |||
<div class="d-flex" :data-step="workflowStep.id"> | |||
<div class="ui-portlet-section" style="width: 100%"> | |||
<div class="portlet-header portlet-title portlet-operations cursor-pointer" @click="toggleStep"> | |||
<i :class="'portlet-title-icon fa mr-1 ' + stepIcon"></i> | |||
<WorkflowStepIcon :class="portlet - title - icon" :step-type="workflowStepType" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<WorkflowStepIcon :class="portlet - title - icon" :step-type="workflowStepType" /> | |
<WorkflowStepIcon class="portlet-title-icon" :step-type="workflowStepType" /> |
32febd3
to
57622ae
Compare
57622ae
to
665928e
Compare
WorkflowInvocationStep.vue
to Typescript.How to test the changes?
(Select all options that apply)
License