-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ico updates #35
base: master
Are you sure you want to change the base?
Ico updates #35
Conversation
Require creation date on recovery, build latest styling
Remove old datepicker module, wait for both daemons to be loaded
Disabled strict password requirements
Change default ports
…pdate updated full node submodule
Make text more understandable
Make label more understandable
Small aesthetic change
Remove to/from from transaction details
Fix failing recovery message
Fix decrypt disable
…pdate updated full node submodule
…andling spaces in names.
Local build scripts
Update logos to 512x512
…pdate updated StratisBitcoinFullNode submodule
updated SBFN path
…pdate updated StratisBitcoinFullNode submodule
<label style="font-size:10px">Working...</label> | ||
</div> | ||
</div> | ||
<div class="alert alert-danger" role="alert" *ngIf="errored"> | ||
<label>{{erroredText}}</label> | ||
<div *ngIf="errored"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is ngSwitch
more appropriate here as we are showing divs based on state? https://angular.io/api/common/NgSwitch. Also would be good to get rid of inline styles and combine into common class
/> | ||
<app-feedback *ngIf="!generateAddressesLoadingState.success" style="margin-left:5px; width:115px" [loading]="generateAddressesLoadingState.loading" | ||
[errored]="generateAddressesLoadingState.errored" [erroredText]="'Failed'"></app-feedback> | ||
<app-feedback style="margin-left:5px; width:115px" [loading]="generateAddressesLoadingState.loading" [success]="showAddressesTick" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there any way to move this to a css class instead of inline styles?
There are also conflicts |
@@ -12,14 +12,16 @@ import { LoadingState } from './loadingState'; | |||
styleUrls: ['./advanced.component.css'] | |||
}) | |||
export class AdvancedComponent implements OnInit, OnDestroy { | |||
private addressCount: string; | |||
private addressCount = ""; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Single quotes for consistency
<button *ngIf="addressCountControl.invalid || !addressCount" style="color: gray; outline:none" class="btn btn-default" type="button">Go</button> | ||
</div> | ||
</span> | ||
<div style="display: flex; flex-direction: row; margin-top:30px"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
inline styles, move to css class
if (response.json().transactionsHistory.length > 0) { | ||
historyResponse = response.json().transactionsHistory; | ||
const json = response.json(); | ||
if (json.transactionsHistory) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What happens if response doesn't have transactionsHistory
? Should we log it or report it to user?
https://stratisplatformuk.visualstudio.com/Stratis%20Core%20-%20Breeze%20Wallet/_workitems/edit/2100
Breeze ICO updates - complete, ready for review.
@fenix2222