diff --git a/apps/server/Cargo.toml b/apps/server/Cargo.toml index df0153ab8..a3b1b541c 100644 --- a/apps/server/Cargo.toml +++ b/apps/server/Cargo.toml @@ -6,6 +6,7 @@ repository = { workspace = true } edition = { workspace = true } [features] +default = ["ai-models"] assets = [] ai-models = ["sd-core/ai"] diff --git a/interface/app/$libraryId/Explorer/View/GridView/Item/index.tsx b/interface/app/$libraryId/Explorer/View/GridView/Item/index.tsx index d8f91ecec..c568e3ba8 100644 --- a/interface/app/$libraryId/Explorer/View/GridView/Item/index.tsx +++ b/interface/app/$libraryId/Explorer/View/GridView/Item/index.tsx @@ -85,6 +85,7 @@ const ItemFileThumb = () => { extension className={clsx('px-2 py-1', item.cut && 'opacity-60')} ref={setDraggableRef} + frameClassName={clsx(item.data.type === "Label" && "!rounded-2xl")} childProps={{ style, ...attributes, diff --git a/interface/app/$libraryId/Explorer/View/ListView/useTable.tsx b/interface/app/$libraryId/Explorer/View/ListView/useTable.tsx index bc2c3afa7..da19fcc95 100644 --- a/interface/app/$libraryId/Explorer/View/ListView/useTable.tsx +++ b/interface/app/$libraryId/Explorer/View/ListView/useTable.tsx @@ -38,7 +38,7 @@ const NameCell = memo(({ item, selected }: { item: ExplorerItem; selected: boole