Skip to content

Commit

Permalink
Merge pull request #29 from kinow/minor-changes
Browse files Browse the repository at this point in the history
Minor changes after importing project into WebStorm
  • Loading branch information
suecharo authored Mar 17, 2022
2 parents d7be4a5 + 7bcfdd0 commit 0ea8297
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/services/WorkflowTrsImportDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
:key="item.name"
:class="{
'text-capitalize': true,
'mr-2': index != defaultEndpoints.length - 1,
'mr-2': index !== defaultEndpoints.length - 1,
}"
outlined
width="110"
Expand Down
2 changes: 1 addition & 1 deletion src/store/services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ export const mutations: MutationTree<State> = {
state,
payload: {
key: keyof Service
value: boolean | string | ServiceInfo | ServiceState | string | string[]
value: boolean | string | ServiceInfo | ServiceState | string[]
serviceId: string
}
) {
Expand Down
2 changes: 1 addition & 1 deletion src/store/workflows.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export const mutations: MutationTree<State> = {
state,
payload: {
key: keyof Workflow
value: AttachedFile[] | boolean | string | string | string[]
value: AttachedFile[] | boolean | string | string[]
workflowId: string
}
) {
Expand Down

0 comments on commit 0ea8297

Please sign in to comment.