From 1e434888db83fda0ea9571f7ca67947f28b27119 Mon Sep 17 00:00:00 2001 From: PhilReact Date: Sat, 5 Jul 2025 07:15:28 +0300 Subject: [PATCH] fix name spacing link --- src/components/Apps/AppViewer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Apps/AppViewer.tsx b/src/components/Apps/AppViewer.tsx index a83d4f0..fd0ef31 100644 --- a/src/components/Apps/AppViewer.tsx +++ b/src/components/Apps/AppViewer.tsx @@ -75,7 +75,7 @@ export const AppViewer = React.forwardRef(({ app , hide, isDevMode, skipAuth}, i const copyLinkFunc = (e) => { const {tabId} = e.detail if(tabId === app?.tabId){ - let link = 'qortal://' + app?.service + '/' + app?.name + let link = 'qortal://' + app?.service + '/' + app?.name.replace(/ /g, '%20'); if(path && path.startsWith('/')){ link = link + removeTrailingSlash(path) }