Files
recap-relay/startos/versions/v0.2.38.ts
T

14 lines
1.1 KiB
TypeScript

import { VersionInfo } from '@start9labs/start-sdk'
export const v_0_2_38 = VersionInfo.of({
version: '0.2.38:0',
releaseNotes: {
en_US:
'Errors column gets a fixed default width. Long error strings (e.g., a stack trace or a full yt-dlp --list-subs dump) were stretching the column to the full unwrapped width of the longest message, blowing out the table\'s horizontal scroll and forcing the operator to scroll way right just to see a normal row. The column now defaults to 220px wide; the existing expand chevron (+) on each row reveals the full text when needed, and hovering the cell shows the full text in the native browser tooltip. User-resize via the column-edge drag handle still works — if the resized width is set in state.jobsColumnWidths.errors it overrides the 220px default. Implementation note: the inline max-width is applied to the TD itself (not just the TH) because in auto-layout tables, the TH width is treated as a hint and the cell content can still force the column wider. Stamping max-width on the TD enforces it.',
},
migrations: {
up: async ({ effects }) => {},
down: async ({ effects }) => {},
},
})