WIP rename value, add temp forward/back functionality.

This commit is contained in:
Bryan Mauger 2024-02-16 15:28:30 -05:00
parent f9462dcc09
commit 3578401a95
2 changed files with 8 additions and 2 deletions

View file

@ -105,7 +105,13 @@ export default {
}, },
handleAutocompleteSelect(value) { handleAutocompleteSelect(value) {
this.selectedQuery = value; this.selectedQuery = value;
} },
backButtonAction() {
this.$router.navigateWithoutSaving(this.navigationScenarios.CLICKED_BACK, this.$route);
},
forwardButtonAction() {
alert("Still needs to be wired up");
},
}, },
mounted() { mounted() {
const select = this.handleAutocompleteSelect; const select = this.handleAutocompleteSelect;

View file

@ -396,7 +396,7 @@ const routingTable = function (store) {
], ],
}, },
{ {
fmgPageValue: fmgPageValues.INSURANCE, fmgPageValue: fmgPageValues.INSURANCE_LOOKUP,
maps: [ maps: [
{ {
scenario: navigationScenarios.CLICKED_BACK, scenario: navigationScenarios.CLICKED_BACK,