mirror of
https://github.com/Qortal/qortal-ui.git
synced 2025-02-11 17:55:51 +00:00
added isMinting var
This commit is contained in:
parent
cb252c3fa7
commit
565bed7b16
@ -19,6 +19,7 @@ class YesSponsored extends LitElement {
|
||||
return {
|
||||
addressInfo: { type: Object },
|
||||
rewardSharePublicKey: { type: String },
|
||||
isMinting: {type: Boolean}
|
||||
};
|
||||
}
|
||||
|
||||
@ -27,6 +28,7 @@ class YesSponsored extends LitElement {
|
||||
|
||||
this.addressInfo = {};
|
||||
this.rewardSharePublicKey = '';
|
||||
this.isMinting = false
|
||||
}
|
||||
|
||||
static styles = [pageStyles];
|
||||
@ -63,7 +65,12 @@ class YesSponsored extends LitElement {
|
||||
<hr
|
||||
style="color: #eee; border-radius: 90%; margin-bottom: 1rem;"
|
||||
/>
|
||||
${this.isMinting ? html`
|
||||
<h4>${translate('becomeMinterPage.bchange12')}</h4>
|
||||
` : html`
|
||||
<h4>${translate('mintingpage.mchange9')}</h4>
|
||||
`}
|
||||
|
||||
</div>
|
||||
<div class="content-box">
|
||||
<span class="title"
|
||||
|
Loading…
x
Reference in New Issue
Block a user