Only show file name on history card

This commit is contained in:
Andras Schmelczer 2025-03-22 20:23:34 +00:00
parent 84adda96c1
commit 3dbeb54c54
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C

View file

@ -54,7 +54,7 @@ export class HistoryView extends ItemView {
}
element.createEl("span", {
text: entry.relativePath
text: entry.relativePath.split("/").pop()
});
}