Check that event handler is not null

It is passed as null in 5a0b0b41a9/modules/ppcp-wc-gateway/resources/js/gateway-settings.js (L85)
This commit is contained in:
Alex P 2023-07-11 11:31:34 +03:00
parent 5a0b0b41a9
commit f67db5c524
No known key found for this signature in database
GPG key ID: 54487A734A204D71

View file

@ -81,7 +81,9 @@ class Renderer {
...contextConfig,
onClick: this.onSmartButtonClick,
onInit: (data, actions) => {
this.onSmartButtonsInit(data, actions);
if (this.onSmartButtonsInit) {
this.onSmartButtonsInit(data, actions);
}
this.handleOnButtonsInit(wrapper, data, actions);
},
});