We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1e5385 commit 3e4ac31Copy full SHA for 3e4ac31
src/routes/(console)/project-[region]-[project]/databases/database-[database]/(suggestions)/empty.svelte
@@ -65,7 +65,7 @@
65
66
const getColumnWidth = (columnKey: string) => Math.max(180, columnKey.length * 8 + 60);
67
const safeNumericValue = (value: number | undefined) =>
68
- value && isWithinSafeRange(value) ? value : undefined;
+ value !== undefined && isWithinSafeRange(value) ? value : undefined;
69
70
const findHorizontalScroller = (root: HTMLElement | null): HTMLElement | null => {
71
let element = root as HTMLElement | null;
0 commit comments