Skip to content
This repository has been archived by the owner on Mar 27, 2023. It is now read-only.

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ThrownLemon committed Jun 21, 2021
1 parent c6cac5d commit 58a26d9
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "conceal-lite-wallet",
"version": "1.0.0",
"version": "1.0.1",
"description": "Conceal Lite Wallet",
"homepage": "https://github.com/ThrownLemon/conceal-lite-wallet",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/app/modules/dashboard/dashboard.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ <h1 id="title" class="title">{{ 'PAGES.DASHBOARD.HEADINGS.Wallets' | translate }
</mat-card-actions>
</mat-card-footer>
</mat-card>
<div class="new walletCard" fxFlex fxLayout="column" *ngIf="getDataService().walletCount <= 2">
<div class="new walletCard" fxFlex fxLayout="column" *ngIf="getDataService().walletCount <= 1">
<div fxFlex="auto" fxLayoutGap="15px" fxLayout="column" fxLayoutAlign="space-around center">
<button id="button" mat-button matTooltip="{{ 'PAGES.DASHBOARD.TEXT.Generate.Wallet' | translate }}" matTooltipPosition="below" matTooltipClass="custom-tooltip" (click)="getHelperService().createWallet()">
{{ 'PAGES.DASHBOARD.TEXT.Create.Wallet' | translate }}
Expand Down
8 changes: 4 additions & 4 deletions src/app/modules/transfer/transfer.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -120,12 +120,12 @@
Address must be <strong>98 characters</strong>
</mat-error>
</mat-form-field>
<mat-form-field hintLabel="35 characters" appearance="fill">
<mat-form-field hintLabel="64 characters" appearance="fill">
<mat-label>Payment ID (Optional)</mat-label>
<input matInput #payid [(value)]="getDataService().sendToPAymentID" type="text" maxlength="35" placeholder="Payment ID" formControlName="paymentidFormControl">
<mat-hint align="end">{{payid.value.length}} / 35</mat-hint>
<input matInput #payid [(value)]="getDataService().sendToPAymentID" type="text" maxlength="64" placeholder="Payment ID" formControlName="paymentidFormControl">
<mat-hint align="end">{{payid.value.length}} / 64</mat-hint>
<mat-error *ngIf="pay.controls.paymentidFormControl.hasError('minlength')">
Address must be <strong>35 characters</strong>
Address must be <strong>64 characters</strong>
</mat-error>
</mat-form-field>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/app/modules/transfer/transfer.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ export class TransferComponent implements OnInit {
this.matches.bind(this),
]),
paymentidFormControl: new FormControl('', [
Validators.minLength(35),
Validators.maxLength(35),
Validators.minLength(64),
Validators.maxLength(64),
]),
messageFormControl: new FormControl('', [
Validators.minLength(1),
Expand Down
1 change: 0 additions & 1 deletion src/app/shared/components/header/header.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<div *ngIf="!getDataService().isLoggedIn">
<button mat-button class="navlink" routerLink="/dashboard" routerLinkActive="active">{{ 'PAGES.HEADER.DASHBOARD' | translate }}</button>
<button mat-button class="navlink" routerLink="/transfer" routerLinkActive="active">{{ 'PAGES.HEADER.TRANSFER' | translate }}</button>
<button mat-button class="navlink" (click)="getDialogService().openBankingDialog()">{{ 'PAGES.HEADER.BANKING' | translate }}</button>
</div>
<span class="spacer"></span>
<div class="action-icons" *ngIf="!getDataService().isLoggedIn">
Expand Down

0 comments on commit 58a26d9

Please sign in to comment.