CSR-762 Fix radio click bug

This commit is contained in:
Katie 2022-09-29 15:44:30 -04:00
parent 0e628a4850
commit 62e3e2dfeb

View file

@ -28,6 +28,7 @@ import { toRef } from "vue";
import { gaStoreActions } from "../../constants/store-actions";
import store from "../../store";
// TODO KO Bug: select a chip via radio button, hit continue - doesn't fire the chip number
export default {
name: "base-input-button",
emits: ["change"],
@ -215,13 +216,13 @@ export default {
);
if (
firedGaClickEventValues[lastFocusedInputGroup] !=
currentlySelectedValues[lastFocusedInputGroup]
firedGaClickEventValues[this.groupName] !=
currentlySelectedValues[this.groupName]
) {
this.pushClickEventToGA(
currentlySelectedValues[lastFocusedInputGroup]
currentlySelectedValues[this.groupName]
);
}
}
}
},
},