We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When editing or creating new retailer on sections "Opening Hours" and "Special Opening Hours" time slider doesn't work
PHP 8.1 Magento Version : EE 2.4.4 Module Store Locator Version : 2.0.7
Environment : development
UPD:
We have a workaround for this
view/adminhtml/web/js/elessar/elessar.js:64
var has = Object.prototype.hasOwnProperty; module.exports = function getEventProperty(prop, event) { + if (typeof event.originalEvent.clientX !== undefined) { + return event.originalEvent.clientX; + } + return has.call(event, prop) ? event[prop] : event.originalEvent && event.originalEvent.touches ? event.originalEvent.touches[0][prop] : undefined;
Regards,
The text was updated successfully, but these errors were encountered:
This should be already fixed via #142 and #143.
Sorry, something went wrong.
No branches or pull requests
When editing or creating new retailer on sections "Opening Hours" and "Special Opening Hours" time slider doesn't work
Preconditions
PHP 8.1
Magento Version : EE 2.4.4
Module Store Locator Version : 2.0.7
Environment : development
Steps to reproduce
Expected result
Actual result
UPD:
We have a workaround for this
view/adminhtml/web/js/elessar/elessar.js:64
Regards,
The text was updated successfully, but these errors were encountered: