Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions client/src/assets/images/person-check.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions client/src/assets/images/person-freeze.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions client/src/assets/images/person-remove.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions client/src/assets/images/shield-cancel.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,22 @@
{{ orgInfo.hasUserLimit ? orgInfo.userLimit : $msTranslate('OrganizationPage.configuration.unlimited') }}
</div>
</div>
<!-- MFA requirement -->
<div class="info-list-item">
<ion-label class="info-list-item__title body">
{{ $msTranslate('OrganizationPage.configuration.mfaRequired') }}
</ion-label>
<div
class="info-list-item__value cell-title"
:class="orgInfo.mfaRequired ? 'success' : 'warning'"
>
{{
orgInfo.mfaRequired
? $msTranslate('OrganizationPage.configuration.allowed')
: $msTranslate('OrganizationPage.configuration.forbidden')
}}
</div>
</div>
<!-- Server addr -->
<div class="info-list-item server-address">
<ion-text class="info-list-item__title server-address__title body">
Expand Down Expand Up @@ -115,7 +131,7 @@ async function copyAddress(address: string): Promise<void> {
gap: 1rem;
width: 100%;
max-width: 30rem;
border-radius: var(--parsec-radius-12);
border-radius: var(--parsec-radius-18);
height: fit-content;
box-shadow: var(--parsec-shadow-input);
padding: 1.5rem;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ defineProps<{
gap: 1rem;
width: 100%;
max-width: 30rem;
border-radius: var(--parsec-radius-12);
border-radius: var(--parsec-radius-18);
height: fit-content;
box-shadow: var(--parsec-shadow-input);
padding: 1.5rem;
Expand Down
Loading
Loading