From 19a3d7a8fb1094dc7cbc185e0c1562fd7480110e Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Sun, 3 Nov 2024 20:19:28 -0500 Subject: [PATCH] fix --- apps/repl/app/components/limber/share.gts | 106 ++++++++++++---------- 1 file changed, 56 insertions(+), 50 deletions(-) diff --git a/apps/repl/app/components/limber/share.gts b/apps/repl/app/components/limber/share.gts index f83b6fef2..77d76aa14 100644 --- a/apps/repl/app/components/limber/share.gts +++ b/apps/repl/app/components/limber/share.gts @@ -24,57 +24,63 @@ const isShowing = cell(false); const { Boolean } = globalThis; -export class Share extends Component { +export const Share = + + + Share + + + + + {{#if m.isOpen}} + + {{/if}} + + +; + +class ShareModal extends Component<{ onCancel: () => void }> { - - - Share - - - - - - - Share - - - - - - - {{#if this.error}} - {{this.error}} - {{/if}} - - - - {{#unless this.shortUrl}} - Create - {{/unless}} - - - - will copy a shortened URL to your clipboard. - - - - - - + + + Share + + + + + + + {{#if this.error}} + {{this.error}} + {{/if}} + + + + {{#unless this.shortUrl}} + Create + {{/unless}} + + + + will copy a shortened URL to your clipboard. + + + + @service declare router: RouterService;