Fix topbar content hiding and updated dockerfile to include version env file

This commit is contained in:
LukeGus
2025-08-09 15:28:01 -05:00
parent 7dc1de913f
commit fc7731041e
2 changed files with 2 additions and 1 deletions

View File

@@ -67,6 +67,7 @@ COPY --from=native-builder /app/node_modules/better-sqlite3 /app/node_modules/be
COPY --from=backend-builder /app/dist/backend ./dist/backend
COPY package.json ./
COPY .env ./.env
RUN chown -R node:node /app
VOLUME ["/app/data"]

View File

@@ -37,7 +37,7 @@ export function SSHTopbar({
alignItems: 'center',
}}>
<div style={{flex: 1, minWidth: 0, height: '100%', overflowX: 'auto'}}>
<div style={{minWidth: 'max-content', height: '100%', paddingLeft: 8}}>
<div style={{minWidth: 'max-content', height: '100%', paddingLeft: 8, overflowY: 'hidden'}}>
<SSHTabList
allTabs={allTabs}
currentTab={currentTab}