| Current Path : /home/rtorresani/www/app/code/Amasty/CronSchedule/view/adminhtml/web/js/form/element/ |
| Current File : //home/rtorresani/www/app/code/Amasty/CronSchedule/view/adminhtml/web/js/form/element/input.js |
define([
'Magento_Ui/js/form/element/abstract',
'uiRegistry'
], function (Abstract, registry) {
'use strict';
return Abstract.extend({
onUpdate: function () {
const customValue = ' ';
if (this.focused()) {
registry.get('index = frequency').value(customValue);
this._super();
}
}
});
});