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 46ce5ff commit 8ac1fc6Copy full SHA for 8ac1fc6
apps/frontend/src/pages/servers/manage/[id]/files.vue
@@ -773,6 +773,8 @@ const editFile = async (item: { name: string; type: string; path: string }) => {
773
const path = `${currentPath.value}/${item.name}`.replace("//", "/");
774
const content = (await props.server.fs?.downloadFile(path)) as string;
775
776
+ window.scrollTo(0, 0);
777
+
778
fileContent.value = content;
779
editingFile.value = item;
780
isEditing.value = true;
0 commit comments