diff --git a/web/containers/Layout/BottomBar/index.tsx b/web/containers/Layout/BottomBar/index.tsx
index f5e817a1b8..dfd1b324d1 100644
--- a/web/containers/Layout/BottomBar/index.tsx
+++ b/web/containers/Layout/BottomBar/index.tsx
@@ -68,7 +68,7 @@ const BottomBar = () => {
className="cursor-pointer rounded-md border-none font-medium"
onClick={() => setShowSelectModelModal((show) => !show)}
>
- My Models
+ My Models
@@ -86,9 +86,15 @@ const BottomBar = () => {
value={stateModel.model || '-'}
/>
)}
- {!stateModel.loading && downloadedModels.length !== 0 && (
-
- )}
+ {!stateModel.loading &&
+ downloadedModels.length !== 0 &&
+ activeModel?.id && (
+
+ )}
{downloadedModels.length === 0 &&
!stateModel.loading &&
downloadStates.length === 0 && (
diff --git a/web/containers/Shortcut/index.tsx b/web/containers/Shortcut/index.tsx
index 1e6d7a81a9..6153f48a74 100644
--- a/web/containers/Shortcut/index.tsx
+++ b/web/containers/Shortcut/index.tsx
@@ -4,7 +4,7 @@ export default function ShortCut(props: { menu: string }) {
return (
-
{symbol + ' + ' + menu}
+
{symbol + menu}
)
}