Skip to content

Commit

Permalink
fix default value on back (#348)
Browse files Browse the repository at this point in the history
* fix default value on back

* Update package.json

* Update package.json
  • Loading branch information
slavik-lvovsky authored Aug 25, 2020
1 parent 4c4b01f commit d32ffbf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/src/replayUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export class ReplayUtils {
// the choices array for questions of type checkbox
if (answer !== undefined) {
question.__ForceDefault = true;
question.default = answer;
question.__origAnswer = answer;
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"dependencies": {
"@mdi/font": "^5.1.45",
"@sap-devx/inquirer-gui": "0.1.16",
"@sap-devx/inquirer-gui": "0.1.17",
"@sap-devx/inquirer-gui-file-browser-plugin": "0.0.5",
"@sap-devx/inquirer-gui-folder-browser-plugin": "0.0.3",
"@sap-devx/inquirer-gui-login-plugin": "0.0.4",
Expand Down

0 comments on commit d32ffbf

Please sign in to comment.