跳至內容
選單
此問題已被標幟
1 回覆
1916 瀏覽次數

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

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
0
8月 25
180
1
8月 25
2137
1
7月 25
2622
2
7月 25
8041
2
7月 25
4519