do not use full width

This commit is contained in:
Yuri Kuznetsov
2025-10-18 10:33:28 +03:00
parent d2ae211e53
commit be2dd74c43
3 changed files with 6 additions and 16 deletions
@@ -26,12 +26,8 @@
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
************************************************************************/
define('crm:views/knowledge-base-article/record/detail-quick', ['views/record/detail-small'], function (Dep) {
import DetailRecordView from 'views/record/detail';
return Dep.extend({
isWide: true,
sideView: false,
});
});
export default class extends DetailRecordView {
}
@@ -26,11 +26,8 @@
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
************************************************************************/
define('crm:views/knowledge-base-article/record/edit-quick', ['views/record/edit-small'], function (Dep) {
import EditRecordView from 'views/record/edit';
return Dep.extend({
export default class extends EditRecordView {
isWide: true,
sideView: false,
});
});
}