Skip to content

Commit

Permalink
pnpm run lint to format the code
Browse files Browse the repository at this point in the history
  • Loading branch information
Xuxiaotuan committed Sep 19, 2024
1 parent d747b14 commit 6d2c77e
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,9 @@ export function useDependencies() {
.forEach((item: any) => {
dependentTaskLinks.push({
text:
item.workflowDefinitionName + '->' + item.taskDefinitionName,
item.workflowDefinitionName +
'->' +
item.taskDefinitionName,
show: true,
action: () => {
const url = `/projects/${item.projectCode}/workflow/definitions/${item.workflowDefinitionCode}`
Expand Down Expand Up @@ -172,7 +174,9 @@ export function useDependencies() {
.forEach((item: any) => {
dependentTaskLinks.push({
text:
item.workflowDefinitionName + '->' + item.taskDefinitionName,
item.workflowDefinitionName +
'->' +
item.taskDefinitionName,
show: true,
action: () => {
const url = `/projects/${item.projectCode}/workflow/definitions/${item.workflowDefinitionCode}`
Expand Down

0 comments on commit 6d2c77e

Please sign in to comment.