Skip to content

Commit

Permalink
Merge pull request #321 from amosproj/added-non-supported-to-revocable
Browse files Browse the repository at this point in the history
cred-def-create: added not supported to revocable
  • Loading branch information
Jean28518 committed Jul 25, 2022
2 parents 6f4c02c + ad256fd commit 72dfc41
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,9 @@
}

.revocable-tickbox {
padding-bottom: 1.3rem;
padding-bottom: 0.5rem;
}

#revocable-container {
margin-bottom: 1rem;
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,29 @@
/>
</mat-form-field>

<mat-checkbox
class="revocable-tickbox"
color="primary"
ngDefaultControl
name="revocable"
[checked]="credDefFormGroup.value['revocable']"
(change)="
credDefFormGroup.controls['revocable'].setValue(
!credDefFormGroup.value['revocable']
)
"
>
Revocable
</mat-checkbox>
<div id="revocable-container" class="flex-row">
<mat-checkbox
class="revocable-tickbox"
color="primary"
ngDefaultControl
name="revocable"
[checked]="credDefFormGroup.value['revocable']"
[disabled]="true"
(change)="
credDefFormGroup.controls['revocable'].setValue(
!credDefFormGroup.value['revocable']
)
"
>
Revocable
</mat-checkbox>
<div class="flex-row">
<mat-icon [ngStyle]="{ color: 'orange', opacity: '1' }"
>warning</mat-icon
>
<span class="aligned-with-icon">Not supported by lissi yet.</span>
</div>
</div>

<div>
<div
Expand All @@ -72,7 +81,7 @@
>
Select image
</button>
<br>
<br />
<span [innerHtml]="fileName" *ngIf="fileName"></span>
<mat-icon [ngStyle]="{ color: 'orange', opacity: '1' }"
>warning</mat-icon
Expand Down

0 comments on commit 72dfc41

Please sign in to comment.