Skip to content

Commit

Permalink
Merge pull request #692 from adshares/develop
Browse files Browse the repository at this point in the history
Change billing history description for reserved amount (#691)
  • Loading branch information
m-pilarczyk authored Sep 20, 2019
2 parents 94ae269 + 418aedc commit 4c808de
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [1.2.1] - 2019-09-20
### Added
- Billing history filtering
- Nwsletter subscribe option
- Newsletter subscribe option
### Changed
- Internal classifier rejects banners only

Expand Down
2 changes: 1 addition & 1 deletion src/app/models/enum/billing-history.enum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export enum billingHistoryItemStatusEnum {
ACCEPTED,
PENDING,
REJECTED,
BLOCKED,
RESERVED,
PROCESSING,
UNCONFIRMED,
CANCELED,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,16 @@
text-center"
attr.data-status="{{ status }}"
>
<span *ngIf="billingHistoryItem.status === statusEnum.RESERVED"
matTooltipClass="dwmth-mat-tooltip"
matTooltip="The amount reserved for the ongoing campaign. After every hour the status is changed to “processing”."
matTooltipPosition="above"
class="billing-table-row__tooltip-placeholder"
>
</span>
<span *ngIf="billingHistoryItem.status === statusEnum.UNCONFIRMED"
matTooltipClass="dwmth-mat-tooltip"
matTooltip="Confirm withdrawal by visiting link from an e-mail"
matTooltip="Confirm withdrawal by visiting link from an e-mail."
matTooltipPosition="above"
class="billing-table-row__tooltip-placeholder"
>
Expand Down

0 comments on commit 4c808de

Please sign in to comment.