Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
モジュールのかんばんビューがあり、[さらに表示 (残り xxx)] をクリックするのではなく、ビューにすべてを表示したいと考えています。
それを実現するコードを知っている人はいますか?
web_kanban モジュールでは、static/src/js/kanban.js で制限が 40 に指定されています。//(this.limit = options.limit || 40;行番号 44 )。に変更してくださいthis.limit = options.limit;。カスタマイズされたモジュールを作成してみてください。
(this.limit = options.limit || 40;
this.limit = options.limit;