Skip to content

Commit 413d8e6

Browse files
committed
fix: diagnostics.
1 parent 805e477 commit 413d8e6

File tree

1 file changed

+4
-4
lines changed
  • src/routes/(console)/project-[region]-[project]/databases/database-[database]/(suggestions)

1 file changed

+4
-4
lines changed

src/routes/(console)/project-[region]-[project]/databases/database-[database]/(suggestions)/empty.svelte

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
119119
let showHeadTooltip = $state(true);
120120
let isInlineEditing = $state(false);
121-
let tooltipTopPosition = $state(50);
121+
// let tooltipTopPosition = $state(50);
122122
let triggerColumnId = $state<string | null>(null);
123123
let hoveredColumnId = $state<string | null>(null);
124124
@@ -1110,15 +1110,15 @@
11101110
columnBeingDeleted = null;
11111111
}
11121112
1113-
function fadeSlide(_: Node, { y = 8, duration = 200 } = {}) {
1113+
/*function fadeSlide(_: Node, { y = 8, duration = 200 } = {}) {
11141114
return {
11151115
duration,
11161116
css: (time: number) => `
11171117
opacity: ${time};
11181118
transform: translateY(${(1 - time) * y}px);
11191119
`
11201120
};
1121-
}
1121+
}*/
11221122
11231123
function columnHoverMouseTracker(event: MouseEvent) {
11241124
if (hoveredColumnId && event.target instanceof Element) {
@@ -1518,7 +1518,7 @@
15181518
hoveredColumnId !== column.id
15191519
) {
15201520
hoveredColumnId = column.id;
1521-
tooltipTopPosition = 35 + Math.random() * 20;
1521+
/*tooltipTopPosition = 35 + Math.random() * 20;*/
15221522
}
15231523
}}
15241524
onclick={() => {

0 commit comments

Comments
 (0)