1
0

2 Коммитууд 58ac43db0e ... 57f3fc3e1e

Эзэн SHA1 Мессеж Огноо
  biblius 57f3fc3e1e improve auth params display 1 сар өмнө
  biblius 58ac43db0e improve auth params display 1 сар өмнө

+ 0 - 2
src/lib/components/Editable.svelte

@@ -1,5 +1,4 @@
 <script lang="ts">
-  import { Input } from "$lib/components/ui/input";
   import { Button } from "$lib/components/ui/button";
   import { Check, X } from "@lucide/svelte";
   import { state as _state } from "$lib/state.svelte";
@@ -58,7 +57,6 @@
   function clickOutsideCancel(node: HTMLElement) {
     const onPointerDown = (event: PointerEvent) => {
       if (!node.contains(event.target as Node)) {
-        // Only blur if this element currently has focus
         if (
           node === document.activeElement ||
           node.contains(document.activeElement)