Qfix readonly improvements (#9621)

Signed-off-by: Anton Alexeyev <alexeyev.anton@gmail.com>
This commit is contained in:
Anton Alexeyev
2025-07-31 21:30:40 +07:00
committed by GitHub
parent 5129ed0f56
commit 3f2606b2bd
27 changed files with 67 additions and 67 deletions
@@ -17,18 +17,14 @@
{notification.subTitle}
</svelte:fragment>
<svelte:fragment slot="buttons">
{#if $allowGuestSignUpStore}
<Button
label={view.string.ReadOnlyJoinWorkspace}
labelParams={{ icon: ' 👥' }}
stopPropagation={false}
on:click={joinWorkspace}
/>
{:else}
<div style="width: auto" />
{/if}
<a href="https://huly.io/signup" target="_blank">
<Button label={view.string.ReadOnlySignUp} labelParams={{ icon: ' 🚀' }} stopPropagation={false} />
</a>
<div style="width: auto" />
<div class="flex-between gap-2">
{#if $allowGuestSignUpStore}
<Button label={view.string.ReadOnlyJoinWorkspace} stopPropagation={false} on:click={joinWorkspace} />
{/if}
<a href="https://huly.io/signup" target="_blank">
<Button label={view.string.ReadOnlySignUp} stopPropagation={false} kind="primary" />
</a>
</div>
</svelte:fragment>
</NotificationToast>