Skip to content

Commit

Permalink
perf: 优化文件管理器终端命令 (#6393)
Browse files Browse the repository at this point in the history
Refs #5891
  • Loading branch information
lan-yonghui authored Sep 6, 2024
1 parent f2d3acb commit 5aad169
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/views/host/terminal/terminal/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ defineExpose({
onMounted(() => {
if (router.currentRoute.value.query.path) {
const path = String(router.currentRoute.value.query.path);
initCmd.value = `cd ${path} \n`;
initCmd.value = `cd "${path}" \n`;
}
});
</script>
Expand Down

0 comments on commit 5aad169

Please sign in to comment.