Skip to content

Commit 41f2574

Browse files
authored
Merge pull request #2192 from appwrite/fixes
GA Tag
2 parents c30c723 + c431883 commit 41f2574

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

src/lib/layout/footer.svelte

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,12 @@
7474
<Divider vertical />
7575
</span>
7676
{/if}
77-
<Badge size="xs" variant="secondary" content="BETA" />
77+
<Badge
78+
size="xs"
79+
type="success"
80+
variant="secondary"
81+
content="Generally Available"
82+
style="white-space: nowrap;" />
7883
</Layout.Stack>
7984
</div>
8085
{/if}
@@ -83,9 +88,15 @@
8388
justifyContent={$isSmallViewport ? 'flex-start' : 'flex-end'}
8489
alignItems="center">
8590
{#if isCloud}
86-
{#if !$isSmallViewport}<Badge size="xs" variant="secondary" content="BETA" /><Icon
87-
size="s"
88-
icon={IconCloud} />
91+
{#if !$isSmallViewport}
92+
<Badge
93+
size="xs"
94+
type="success"
95+
variant="secondary"
96+
content="Generally Available"
97+
style="white-space: nowrap;" />
98+
99+
<Icon size="s" icon={IconCloud} />
89100
{#if $version}
90101
<Link.Anchor
91102
size="s"

0 commit comments

Comments
 (0)