Compare commits

...

2 Commits

Author SHA1 Message Date
995d3ca00d Merge pull request 'fix: restore exchange table scroll by adding flex constraints to tableWrap' (#126) from fix/deployments-redirect-path into main
All checks were successful
CI / cleanup-branch (push) Has been skipped
CI / build (push) Successful in 1m14s
CI / docker (push) Successful in 28s
CI / deploy-feature (push) Has been skipped
CI / deploy (push) Successful in 42s
SonarQube / sonarqube (push) Successful in 3m41s
Reviewed-on: cameleer/cameleer3-server#126
2026-04-09 19:25:00 +02:00
hsiegeln
ca18e58f5e fix: restore exchange table scroll by adding flex constraints to tableWrap
All checks were successful
CI / cleanup-branch (push) Has been skipped
CI / build (push) Successful in 1m24s
CI / docker (push) Successful in 1m32s
CI / cleanup-branch (pull_request) Has been skipped
CI / deploy (push) Has been skipped
CI / build (pull_request) Successful in 1m45s
CI / docker (pull_request) Has been skipped
CI / deploy (pull_request) Has been skipped
CI / deploy-feature (pull_request) Has been skipped
CI / deploy-feature (push) Successful in 48s
The tableSection card wrapper broke the flex height chain — DataTable's
fillHeight couldn't constrain to viewport. Added .tableWrap with
flex: 1, min-height: 0, display: flex to re-establish the chain.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-09 19:20:50 +02:00
2 changed files with 9 additions and 1 deletions

View File

@@ -29,6 +29,14 @@
color: var(--text-primary);
}
/* Table card must fill remaining height and allow DataTable to scroll internally */
.tableWrap {
flex: 1;
min-height: 0;
display: flex;
flex-direction: column;
}
/* Status cell */
.statusCell {
display: flex;

View File

@@ -251,7 +251,7 @@ export default function Dashboard({ onExchangeSelect, activeExchangeId }: Dashbo
return (
<div className={styles.content}>
<div className={tableStyles.tableSection}>
<div className={`${tableStyles.tableSection} ${styles.tableWrap}`}>
<div className={tableStyles.tableHeader}>
<span className={tableStyles.tableTitle}>
{textFilter ? (