소스 검색

fix: Enter edit mode with text pre-selected

hurxxxx 7 달 전
부모
커밋
18a8a375ab
1개의 변경된 파일5개의 추가작업 그리고 2개의 파일을 삭제
  1. 5 2
      src/lib/components/layout/Sidebar/RecursiveFolder.svelte

+ 5 - 2
src/lib/components/layout/Sidebar/RecursiveFolder.svelte

@@ -309,10 +309,13 @@
 
 		await tick();
 
-		// focus on the input
+		// focus on the input and select all text
 		setTimeout(() => {
 			const input = document.getElementById(`folder-${folderId}-input`);
-			input.focus();
+			if (input) {
+				input.focus();
+				input.select();
+			}
 		}, 100);
 	};