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

View File

@@ -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 {
}

View File

@@ -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,
});
});
}

View File

@@ -31,9 +31,6 @@ import Detail from 'views/email-template/record/detail';
export default class extends EditRecordView {
isWide = true
sideView = false
setup() {
super.setup();
Detail.prototype.listenToInsertField.call(this);