Skip to content

Commit

Permalink
fixed linting warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyler Collins authored and Tyler Collins committed Nov 16, 2023
1 parent 5cf061b commit 1b708fd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions client/src/components/Workflow/WorkflowRunButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,6 @@ export default {
directives: {
VBTooltip,
},
data() {
return{
clicked: false,
}
},
props: {
id: {
type: String,
Expand All @@ -33,6 +28,11 @@ export default {
required: true,
},
},
data() {
return{
clicked: false,
}
},
computed: {
title() {
return "Run workflow";
Expand Down

0 comments on commit 1b708fd

Please sign in to comment.