Skip to content

Commit e15f9b6

Browse files
committed
fix tabs UI
1 parent 0f89b5a commit e15f9b6

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

client/packages/lowcoder/src/pages/setting/environments/components/DeployableItemsList.tsx

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ function DeployableItemsList<T extends DeployableItem, S extends BaseStats>({
4646
history.push(route);
4747
};
4848

49-
// Determine columns - Use new getColumns method if available, fall back to old approach
49+
// Get columns from config
5050
const columns = config.getColumns({
51-
environment,
52-
refreshing,
53-
onToggleManaged,
54-
openDeployModal,
55-
additionalParams
51+
environment,
52+
refreshing,
53+
onToggleManaged,
54+
openDeployModal,
55+
additionalParams
5656
})
5757

5858

@@ -82,6 +82,7 @@ function DeployableItemsList<T extends DeployableItem, S extends BaseStats>({
8282
rowKey={config.idField}
8383
pagination={{ pageSize: 10 }}
8484
size="middle"
85+
scroll={{ x: 'max-content' }}
8586
onRow={(record) => ({
8687
onClick: hasNavigation ? () => handleRowClick(record) : undefined,
8788
style: hasNavigation ? { cursor: 'pointer' } : undefined,

0 commit comments

Comments
 (0)