跳至内容
菜单
此问题已终结
1 回复
1933 查看

Steps to reproduce:


1. Open a contact

2. Open a tab like "internal notes"

3. Edit


navs[activeIndex] is undefined


形象
丢弃
编写者 最佳答案

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')) {

形象
丢弃
相关帖文 回复 查看 活动
3
9月 25
2658
0
8月 25
211
1
8月 25
2183
2
7月 25
8075
2
7月 25
4525