Spaces:
Running
Running
UI and Think fixes
Browse files
src/components/ask-ai/ask-ai.tsx
CHANGED
@@ -130,6 +130,7 @@ function AskAI({
|
|
130 |
}
|
131 |
setThink(thinkMatch.replace("<think>", "").trim());
|
132 |
contentThink += chunk;
|
|
|
133 |
}
|
134 |
}
|
135 |
|
|
|
130 |
}
|
131 |
setThink(thinkMatch.replace("<think>", "").trim());
|
132 |
contentThink += chunk;
|
133 |
+
return read();
|
134 |
}
|
135 |
}
|
136 |
|
src/components/deploy-button/deploy-button.tsx
CHANGED
@@ -87,7 +87,7 @@ function DeployButton({
|
|
87 |
{path ? "Update Space" : "Deploy to Space"}
|
88 |
</Button>
|
89 |
<Button variant="pink" size="sm" className="lg:hidden">
|
90 |
-
{path ? "Update
|
91 |
</Button>
|
92 |
</div>
|
93 |
</PopoverTrigger>
|
|
|
87 |
{path ? "Update Space" : "Deploy to Space"}
|
88 |
</Button>
|
89 |
<Button variant="pink" size="sm" className="lg:hidden">
|
90 |
+
{path ? "Update" : "Deploy"}
|
91 |
</Button>
|
92 |
</div>
|
93 |
</PopoverTrigger>
|
src/components/header/header.tsx
CHANGED
@@ -37,11 +37,13 @@ function Header({
|
|
37 |
alt="DeepSite Logo"
|
38 |
className="size-6 lg:size-8 mr-2 invert-100 dark:invert-0"
|
39 |
/>
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
|
|
|
|
45 |
</h1>
|
46 |
</div>
|
47 |
<div className="flex items-center justify-center gap-1">
|
|
|
37 |
alt="DeepSite Logo"
|
38 |
className="size-6 lg:size-8 mr-2 invert-100 dark:invert-0"
|
39 |
/>
|
40 |
+
<p className="max-md:hidden flex items-center justify-start">
|
41 |
+
DeepSite
|
42 |
+
<span className="font-mono bg-gradient-to-br from-sky-500 to-emerald-500 text-neutral-950 rounded-full text-xs ml-2 px-1.5 py-0.5">
|
43 |
+
{" "}
|
44 |
+
v2
|
45 |
+
</span>
|
46 |
+
</p>
|
47 |
</h1>
|
48 |
</div>
|
49 |
<div className="flex items-center justify-center gap-1">
|