Spaces:
Running
Running
feat(tools): add link to discussion on tools page
Browse files
src/routes/tools/+page.svelte
CHANGED
@@ -120,7 +120,12 @@
|
|
120 |
This feature is <span
|
121 |
class="rounded-lg bg-purple-100 px-2 py-1 font-semibold dark:bg-purple-800/50"
|
122 |
>experimental</span
|
123 |
-
>. Consider
|
|
|
|
|
|
|
|
|
|
|
124 |
</h4>
|
125 |
<div class="ml-auto mt-6 flex justify-between gap-2 max-sm:flex-col sm:items-center">
|
126 |
{#if data.user?.isAdmin}
|
@@ -279,7 +284,11 @@
|
|
279 |
</div>
|
280 |
</a>
|
281 |
{:else}
|
282 |
-
|
|
|
|
|
|
|
|
|
283 |
{/each}
|
284 |
</div>
|
285 |
|
|
|
120 |
This feature is <span
|
121 |
class="rounded-lg bg-purple-100 px-2 py-1 font-semibold dark:bg-purple-800/50"
|
122 |
>experimental</span
|
123 |
+
>. Consider
|
124 |
+
<a
|
125 |
+
class="underline hover:text-purple-500"
|
126 |
+
href="https://huggingface.co/spaces/huggingchat/chat-ui/discussions/569"
|
127 |
+
target="_blank">sharing your feedback with us!</a
|
128 |
+
>
|
129 |
</h4>
|
130 |
<div class="ml-auto mt-6 flex justify-between gap-2 max-sm:flex-col sm:items-center">
|
131 |
{#if data.user?.isAdmin}
|
|
|
284 |
</div>
|
285 |
</a>
|
286 |
{:else}
|
287 |
+
{#if activeOnly}
|
288 |
+
You don't have any active tools.
|
289 |
+
{:else}
|
290 |
+
No tools found
|
291 |
+
{/if}
|
292 |
{/each}
|
293 |
</div>
|
294 |
|