fix(ui): fix tile tooltip + folder picker
- Tooltips now shows their correct px size on hovering - Remove trailing `\` from drive letter in folder picker UI
This commit is contained in:
@@ -41,7 +41,7 @@ function buildBreadcrumbs(path: string | null): { label: string; path: string |
|
||||
const windowsDrive = normalized.match(/^[A-Za-z]:/);
|
||||
|
||||
if (windowsDrive) {
|
||||
const drive = windowsDrive[0] + "\\";
|
||||
const drive = windowsDrive[0];
|
||||
const rest = normalized.slice(2).split(/[\\/]+/).filter(Boolean);
|
||||
let current = drive;
|
||||
return [
|
||||
|
||||
Reference in New Issue
Block a user