Skip to content

Commit

Permalink
do not require annotation for wfs
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedhamidawan committed Oct 31, 2023
1 parent 9a03cb2 commit 44b2c86
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion client/src/components/Workflow/Editor/Attributes.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
<b-textarea
id="workflow-annotation"
v-model="annotationCurrent"
:state="!annotationCurrent ? false : null"
@keyup="$emit('update:annotationCurrent', annotationCurrent)" />
<div class="form-text text-muted">These notes will be visible when this workflow is viewed.</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/Workflow/Editor/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ export default {
this.onUpdateStep(step);
},
async onCreate() {
if (!this.name || !this.annotation) {
if (!this.name) {
const response = "Please provide a name for your workflow.";
this.onWorkflowError("Creating workflow failed", response, {
Ok: () => {
Expand Down

0 comments on commit 44b2c86

Please sign in to comment.