This question has been flagged
1 Reply
2251 Views

I cannot edit the administrator user in community odoo because It giving me error


Odoo Client Error

http://localhost:8069/web/content/352-54f0390/web_editor.assets_editor.js:285
Traceback:
undefined

Avatar
Discard

I have same issue antivirus Kaspersky extension in Chrome blocked))

Best Answer

Hi medhat,


I had the same issue and in my case it was caused by the fact I use AdBlock Plus.

AdBlock plus adds some rules and it seems that web_editor can't handle correctly #Meebo:AdElement.Root.

The incriminated line is in transcoder.js line 52: if (a.matches(rulesCache[r].selector)) {

To solve the problem I had to either disable AdBlock for odoo website or change the script in odoo\addons\web_editor\static\src\js\transcoder.js so that when the selector is this name, it just 'continue'.

i.e:

var selector = rulesCache[r].selector;
 if (selector == '#Meebo:AdElement.Root')
   continue;
if (a.matches(selector)) {


Hope it will help.


Erik

Avatar
Discard