Skip to Content
Menú
This question has been flagged
1 Respondre
1932 Vistes

Steps to reproduce:


1. Open a contact

2. Open a tab like "internal notes"

3. Edit


navs[activeIndex] is undefined


Avatar
Descartar
Autor Best Answer

Solution:

/usr/lib/python3/dist-packages/odoo/addons/web/static/src/js/views/form/form_renderer.js 

Bug:

if (navs[activeIndex].classList.contains('o_invisible_modifier')) {

Fix:

if (activeIndex in navs && navs[activeIndex].classList.contains('o_invisible_modifier')) {

Avatar
Descartar
Related Posts Respostes Vistes Activitat
3
de set. 25
2658
0
d’ag. 25
211
1
d’ag. 25
2183
2
de jul. 25
8075
2
de jul. 25
4525