Skip to content

Commit

Permalink
fix: 适配指令参数变更
Browse files Browse the repository at this point in the history
  • Loading branch information
rehiy committed Mar 14, 2024
1 parent be465f3 commit 7f92efa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webview/src/apps/keyword/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class KeywordCreateComponent {
}

public getRobotHandlers() {
RobotApi.robotHandlers().then((data) => {
RobotApi.robotHandlers({}).then((data) => {
this.robotHandler = data || [];
});
}
Expand Down
2 changes: 1 addition & 1 deletion webview/src/apps/keyword/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export class KeywordUpdateComponent implements OnInit {
}

public getRobotHandlers() {
RobotApi.robotHandlers().then((data) => {
RobotApi.robotHandlers({}).then((data) => {
this.robotHandler = data || [];
});
}
Expand Down

0 comments on commit 7f92efa

Please sign in to comment.