File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/routes/(console)/project-[region]-[project]/databases/database-[database]/(suggestions) Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 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
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 ) {
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 ={() => {
You can’t perform that action at this time.
0 commit comments