Yuki Takei 4 месяцев назад
Родитель
Сommit
dac24350e1
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      apps/app/src/client/components/ItemsTree/SimplifiedItemsTree.tsx

+ 2 - 2
apps/app/src/client/components/ItemsTree/SimplifiedItemsTree.tsx

@@ -142,7 +142,7 @@ export const SimplifiedItemsTree: FC<Props> = (props: Props) => {
   }, [targetPathOrId, items, virtualizer]);
 
   return (
-    <>
+    <div className="list-group">
       {virtualizer.getVirtualItems().map((virtualItem) => {
         const item = items[virtualItem.index];
         const itemData = item.getItemData();
@@ -193,6 +193,6 @@ export const SimplifiedItemsTree: FC<Props> = (props: Props) => {
           </div>
         );
       })}
-    </>
+    </div>
   );
 };