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 6045988 commit a12962cCopy full SHA for a12962c
web_src/js/components/ViewFileTreeItem.vue
@@ -39,7 +39,7 @@ const doLoadChildren = async () => {
39
const onItemClick = (e: MouseEvent) => {
40
// only handle the click event with partial page reloading if
41
// - the user didn't press any special key let browsers handle special keys like "Ctrl+Click"
42
- // - the user doesn't edit the file (a full page reload shows a confirmation dialog if the editor or commit dialog have unsaved changed)
+ // - the user doesn't edit the file (a full page reload shows a confirmation dialog if the editor or commit dialog have unsaved changes)
43
if (!isPlainClick(e) || props.store.pageIsEdit) return;
44
e.preventDefault();
45
if (props.item.entryMode === 'tree') doLoadChildren();
0 commit comments