[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[reclaim-ui] 303/459: fix booleans and function calls
From: |
gnunet |
Subject: |
[reclaim-ui] 303/459: fix booleans and function calls |
Date: |
Fri, 11 Jun 2021 23:26:35 +0200 |
This is an automated email from the git hooks/post-receive script.
martin-schanzenbach pushed a commit to branch master
in repository reclaim-ui.
commit 7d5b63fa8e8e042276916b1b5bfd7ff6a6b18546
Author: Martin Schanzenbach <mschanzenbach@posteo.de>
AuthorDate: Thu Aug 13 17:14:01 2020 +0200
fix booleans and function calls
---
src/app/identity-list/identity-list.component.html | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/app/identity-list/identity-list.component.html
b/src/app/identity-list/identity-list.component.html
index 87fe6d4..d884bb1 100644
--- a/src/app/identity-list/identity-list.component.html
+++ b/src/app/identity-list/identity-list.component.html
@@ -88,11 +88,11 @@
role="alert">
<span class="fa fa-openid"></span> This identity is missing some
requested information:
<ul>
- <li *ngIf="isProfileRequested() &&
isProfileMissing(identity)">getProfileDescription()</li>
- <li *ngIf="isEmailRequested() &&
isEmailMissing(identity)">getEmailDescription()</li>
- <li *ngIf="isPhoneRequested() &&
isPhoneMissing(identity)">getPhoneDescription()</li>
- <li *ngIf="isAddressRequested() &&
isAddressMissing(identity)">getAddressDescription()</li>
- <li *ngFor="let attr of getMissingClaims(identity)">{{attr.name}}<i
*ngIf="!isOptional(attr)"> (required)</i></li>
+ <li *ngIf="isProfileRequested() && isProfileMissing(identity)">{{
getProfileDescription() }}</li>
+ <li *ngIf="isEmailRequested() && isEmailMissing(identity)">{{
getEmailDescription() }}</li>
+ <li *ngIf="isPhoneRequested() && isPhoneMissing(identity)">{{
getPhoneDescription() }}</li>
+ <li *ngIf="isAddressRequested() && isAddressMissing(identity)">{{
getAddressDescription() }}</li>
+ <li *ngFor="let attr of
getMissingClaims(identity)"><b>{{attr.name}}</b><i *ngIf="!isOptional(attr)">
(required)</i></li>
</ul>
<button class="btn btn-primary" [routerLink]="['/edit-identity',
identity.name]">
<span class="fa fa-edit"></span> Edit identity
@@ -133,7 +133,7 @@
</div>
</div>
<div *ngIf="inOpenIdFlow()">
- <button [disabled]="!isClientVerified() &&
!isAnyRequiredClaimMissing(identity)"
+ <button [disabled]="!isClientVerified() ||
isAnyRequiredClaimMissing(identity)"
(click)="loginIdentity(identity)"
class="btn btn-primary mr-1 openid-login">
<span *ngIf="isClientVerified()">Share information marked with <i
class="fa fa-openid text-primary"></i> from this identity.</span>
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
- [reclaim-ui] 308/459: style for buttons, (continued)
- [reclaim-ui] 308/459: style for buttons, gnunet, 2021/06/11
- [reclaim-ui] 339/459: Translated using Weblate (German), gnunet, 2021/06/11
- [reclaim-ui] 302/459: better info, gnunet, 2021/06/11
- [reclaim-ui] 331/459: more i18n, gnunet, 2021/06/11
- [reclaim-ui] 311/459: fix experimental credential selection, gnunet, 2021/06/11
- [reclaim-ui] 341/459: remove template, gnunet, 2021/06/11
- [reclaim-ui] 301/459: more fixes, gnunet, 2021/06/11
- [reclaim-ui] 293/459: make tables responsive, gnunet, 2021/06/11
- [reclaim-ui] 332/459: copy locale, gnunet, 2021/06/11
- [reclaim-ui] 327/459: new localesService, gnunet, 2021/06/11
- [reclaim-ui] 303/459: fix booleans and function calls,
gnunet <=
- [reclaim-ui] 304/459: fix, gnunet, 2021/06/11
- [reclaim-ui] 309/459: fix button hover text, gnunet, 2021/06/11
- [reclaim-ui] 310/459: fix margins, checkboxes, gnunet, 2021/06/11
- [reclaim-ui] 336/459: Translated using Weblate (English), gnunet, 2021/06/11
- [reclaim-ui] 334/459: update, gnunet, 2021/06/11
- [reclaim-ui] 340/459: Translated using Weblate (English), gnunet, 2021/06/11
- [reclaim-ui] 337/459: update en, gnunet, 2021/06/11
- [reclaim-ui] 326/459: fix compilation, gnunet, 2021/06/11
- [reclaim-ui] 316/459: add more i18n, gnunet, 2021/06/11
- [reclaim-ui] 345/459: fix, gnunet, 2021/06/11