コンテンツへスキップ
メニュー
この質問にフラグが付けられました
1 返信
1938 ビュー

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
212
1
8月 25
2186
2
7月 25
8076
2
7月 25
4527