Skip to content

Commit cd96fca

Browse files
committed
Merge tag '3.2.12' of https://github.com/appwrite/console into 3.2.x
2 parents 0b8e66f + 7a673d6 commit cd96fca

File tree

3 files changed

+29
-27
lines changed

3 files changed

+29
-27
lines changed

src/lib/wizards/functions/cover.svelte

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -93,25 +93,27 @@
9393
<div
9494
class="git-container u-position-relative"
9595
class:u-margin-block-start-24={isSelfHosted && !isVcsEnabled}>
96-
<div
97-
class:u-hide={!isSelfHosted || isVcsEnabled}
98-
class="overlay u-flex-vertical u-position-absolute u-height-100-percent u-width-full-line u-z-index-1 card u-text-center">
96+
{#if isSelfHosted && !isVcsEnabled}
9997
<div
100-
class="u-flex-vertical u-height-100-percent u-main-center u-cross-center u-gap-16">
101-
<Heading size="7" tag="h6"
102-
>Configure your self-hosted instance to connect to Git</Heading>
103-
<p>
104-
Connect your function to a Git repository or use a pre-made template<br />after
105-
configuring your self-hosted instance. Learn more in our
106-
<a
107-
href="https://appwrite.io/docs/advanced/self-hosting/functions#git"
108-
target="_blank"
109-
rel="noopener noreferrer"
110-
class="link">documentation</a
111-
>.
112-
</p>
98+
class="overlay u-flex-vertical u-position-absolute u-height-100-percent u-width-full-line u-z-index-1 card u-text-center">
99+
<div
100+
class="u-flex-vertical u-height-100-percent u-main-center u-cross-center u-gap-16">
101+
<Heading size="7" tag="h6">
102+
Configure your self-hosted instance to connect to Git
103+
</Heading>
104+
<p>
105+
Connect your function to a Git repository or use a pre-made template<br />after
106+
configuring your self-hosted instance. Learn more in our
107+
<a
108+
href="https://appwrite.io/docs/advanced/self-hosting/functions#git"
109+
target="_blank"
110+
rel="noopener noreferrer"
111+
class="link">documentation</a
112+
>.
113+
</p>
114+
</div>
113115
</div>
114-
</div>
116+
{/if}
115117
<div class="grid-1-1 u-gap-24">
116118
<div class="card u-cross-child-start u-height-100-percent">
117119
<Heading size="6" tag="h6">Connect Git repository</Heading>

src/routes/console/project-[project]/auth/+page.svelte

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,10 @@
9191
{user.emailVerification && user.phoneVerification
9292
? 'verified'
9393
: user.emailVerification
94-
? 'verified email'
95-
: user.phoneVerification
96-
? 'verified phone'
97-
: 'unverified'}
94+
? 'verified email'
95+
: user.phoneVerification
96+
? 'verified phone'
97+
: 'unverified'}
9898
</Pill>
9999
{:else}
100100
<Pill danger>blocked</Pill>

src/routes/console/project-[project]/auth/user-[user]/updateStatus.svelte

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -112,18 +112,18 @@
112112
{$user.emailVerification && $user.phoneVerification
113113
? 'verified'
114114
: $user.emailVerification
115-
? 'verified email'
116-
: $user.phoneVerification
117-
? 'verified phone'
118-
: 'unverified'}
115+
? 'verified email'
116+
: $user.phoneVerification
117+
? 'verified phone'
118+
: 'unverified'}
119119
</Pill>
120120
{:else}
121121
<Pill success={$user.emailVerification || $user.phoneVerification}>
122122
{$user.emailVerification
123123
? 'verified '
124124
: $user.phoneVerification
125-
? 'verified '
126-
: 'unverified'}
125+
? 'verified '
126+
: 'unverified'}
127127
</Pill>
128128
{/if}
129129
</div>

0 commit comments

Comments
 (0)