A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
AI OnAI Off
A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
The answer from Optimizely Support was that in an editor where there is no real focus you have to set it explicitly with onStartEdit and onStopEdit.
The updated code is:
_setValue: function (value) {
this.onStartEdit();
this._set('value', value);
this.onChange(value);
this._updateDisplayNode(value);
this.validate();
this.onStopEdit();
},
This solved the problem!