Skip to content

Commit

Permalink
Fix: Define default grid on child tabs (adempiere#661)
Browse files Browse the repository at this point in the history
* adempiere#660

* remove
  • Loading branch information
elsiosanchez authored Dec 14, 2022
1 parent e252096 commit 2ae1c85
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/utils/ADempiere/dictionary/window.js
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,6 @@ export function generateWindow(responseWindow) {
// App properties
isShowedTabsParent: true,
isShowedTabsChildren: true,
isShowedRecordNavigation: undefined, // TODO: @deprecated
isShowedAdvancedQuery: false,
isFullScreenTabsParent: false,
isFullScreenTabsChildren: false
Expand Down Expand Up @@ -952,7 +951,7 @@ export function generateTabs({
sequenceTabsList,
// app properties
isShowedRecordNavigation: !(currentTab.isSingleRow || isParentTab), // TODO: @deprecated
isShowedTableRecords: !(currentTab.isSingleRow || isParentTab),
isShowedTableRecords: !isParentTab, // @TODO: !(currentTab.isSingleRow || isParentTab),
index, // this index is not related to the index in which the tabs are displayed
isSelected: false
}
Expand Down

0 comments on commit 2ae1c85

Please sign in to comment.