CSR-762 Fix radio click bug
This commit is contained in:
parent
0e628a4850
commit
62e3e2dfeb
1 changed files with 5 additions and 4 deletions
|
|
@ -28,6 +28,7 @@ import { toRef } from "vue";
|
||||||
import { gaStoreActions } from "../../constants/store-actions";
|
import { gaStoreActions } from "../../constants/store-actions";
|
||||||
import store from "../../store";
|
import store from "../../store";
|
||||||
|
|
||||||
|
// TODO KO Bug: select a chip via radio button, hit continue - doesn't fire the chip number
|
||||||
export default {
|
export default {
|
||||||
name: "base-input-button",
|
name: "base-input-button",
|
||||||
emits: ["change"],
|
emits: ["change"],
|
||||||
|
|
@ -215,11 +216,11 @@ export default {
|
||||||
);
|
);
|
||||||
|
|
||||||
if (
|
if (
|
||||||
firedGaClickEventValues[lastFocusedInputGroup] !=
|
firedGaClickEventValues[this.groupName] !=
|
||||||
currentlySelectedValues[lastFocusedInputGroup]
|
currentlySelectedValues[this.groupName]
|
||||||
) {
|
) {
|
||||||
this.pushClickEventToGA(
|
this.pushClickEventToGA(
|
||||||
currentlySelectedValues[lastFocusedInputGroup]
|
currentlySelectedValues[this.groupName]
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue