@@ -104,8 +105,9 @@ const tf = (text: string) => {
@@ -129,39 +131,45 @@ const tf = (text: string) => {
:key="item.id"
:class="item.contentType !== 'GENERAL' && 'hidden'"
>
-
diff --git a/components/ui/tooltip/Tooltip.vue b/components/ui/tooltip/Tooltip.vue
new file mode 100644
index 0000000..90741e3
--- /dev/null
+++ b/components/ui/tooltip/Tooltip.vue
@@ -0,0 +1,14 @@
+
+
+
{
- const query = getQuery(event);
- const toolCall = query.tool;
- const forwardCall = query.forward;
- if (toolCall) {
- const buildUrl = "/desktop?openapp=" + toolCall;
- return sendRedirect(event, buildUrl, 302);
- }
- if (forwardCall) {
- const buildUrl = "/" + forwardCall;
- return sendRedirect(event, buildUrl, 302);
- }
- return sendRedirect(event, "/", 302)
-})
\ No newline at end of file
+ const query = getQuery(event);
+ const toolCall = query.tool;
+ const forwardCall = query.forward;
+ if (toolCall) {
+ const buildUrl = "/desktop?openapp=" + toolCall;
+ return sendRedirect(event, buildUrl, 302);
+ }
+ if (forwardCall) {
+ const buildUrl = "/" + forwardCall;
+ return sendRedirect(event, buildUrl, 302);
+ }
+ return sendRedirect(event, "/", 302);
+});