You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- only render the tree if we're visible. in many cases this is something that doesn't change very often -->
65
-
<ViewFileTreeItemv-for="item in files":key="item.name":item="item":selected-item="selectedItem":navigate-view-content="navigateTreeView":load-children="loadChildren"/>
65
+
<ViewFileTreeItemv-for="item in files":key="item.name":item="item":selected-item="selectedItem":get-web-url="getWebUrl":navigate-view-content="navigateTreeView":load-children="loadChildren"/>
if (e.button!==0||e.ctrlKey||e.metaKey||e.altKey||e.shiftKey) return;
54
+
e.preventDefault();
55
+
56
+
props.navigateViewContent(props.item.fullPath);
59
57
};
60
58
</script>
61
59
62
60
<!--title instead of tooltip above as the tooltip needs too much work with the current methods, i.e. not being loaded or staying open for "too long"-->
<ViewFileTreeItemv-for="childItem in children":key="childItem.entryName":item="childItem":selected-item="selectedItem":navigate-view-content="navigateViewContent":load-children="loadChildren"/>
122
+
<ViewFileTreeItemv-for="childItem in children":key="childItem.entryName":item="childItem":selected-item="selectedItem":get-web-url="getWebUrl":navigate-view-content="navigateViewContent":load-children="loadChildren"/>
0 commit comments