Fix GalleryFolder rendering for long paths

This commit is contained in:
awsr
2025-12-04 03:56:56 -08:00
parent 78e8bff46f
commit 489db27210
+1
View File
@@ -161,6 +161,7 @@ class GalleryFolder extends HTMLElement {
constructor(name) {
super();
this.name = decodeURI(name);
this.style.overflowX = 'hidden';
this.shadow = this.attachShadow({ mode: 'open' });
this.shadow.adoptedStyleSheets = [folderStylesheet];
}