mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-27 12:04:56 +02:00
Qfix readonly improvements (#9621)
Signed-off-by: Anton Alexeyev <alexeyev.anton@gmail.com>
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user