()
| 436 | title: "Close diff viewer", |
| 437 | category: "VCS", |
| 438 | run() { |
| 439 | const returnRoute = params()?.returnRoute |
| 440 | props.api.ui.dialog.clear() |
| 441 | |
| 442 | props.api.route.navigate( |
| 443 | returnRoute?.name ?? "home", |
| 444 | returnRoute && "params" in returnRoute ? returnRoute.params : undefined, |
| 445 | ) |
| 446 | }, |
| 447 | }, |
| 448 | { |
| 449 | name: "diff.down", |
nothing calls this directly
no test coverage detected