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
pathLabel=pathLabel ? (rootName+' • '+pathLabel) : rootName;// always show root basename if there are multiple
49
49
}
50
50
@@ -82,7 +82,7 @@ export function getBaseLabel(resource: URI | string | undefined): string | undef
82
82
resource=URI.file(resource);
83
83
}
84
84
85
-
constbase=pathsBasename(resource.path)||(resource.scheme===Schemas.file ? resource.fsPath : resource.path)/* can be empty string if '/' is passed in */;
85
+
constbase=basename(resource)||(resource.scheme===Schemas.file ? resource.fsPath : resource.path)/* can be empty string if '/' is passed in */;
0 commit comments