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;