mirror of
https://github.com/Qortal/qortal-ui.git
synced 2025-02-12 02:05:51 +00:00
Add fee info for Group transactions
This commit is contained in:
parent
28632e0c82
commit
39fa338937
11
README.md
11
README.md
@ -31,20 +31,21 @@ Easiest way to install the lastest required packages on Linux is via nvm.
|
|||||||
|
|
||||||
Adding via binary package mirror will only work if you have set the package path. You can do a node or java build via ports instead by downloading ports with portsnap fetch method.
|
Adding via binary package mirror will only work if you have set the package path. You can do a node or java build via ports instead by downloading ports with portsnap fetch method.
|
||||||
|
|
||||||
Verify your installtion with node --version <br/>
|
Verify your installation with ``` node --version ``` <br/>
|
||||||
- ``` If you have an older installation of npm, please do not forget to update that with npm update -g. ```
|
- If you have an older installation of npm, please do not forget to update that with ``` npm update -g ```
|
||||||
|
|
||||||
Clone the main UI repo
|
Clone the main UI repo
|
||||||
- ``` git clone https://github.com/Qortal/qortal-ui.git ```
|
- ``` git clone https://github.com/Qortal/qortal-ui.git ```
|
||||||
|
|
||||||
Installation
|
Installation
|
||||||
------------------------
|
------------------------
|
||||||
In `qortal-ui/` npm install
|
In `qortal-ui` directory, run:
|
||||||
|
```
|
||||||
|
npm install
|
||||||
|
```
|
||||||
|
|
||||||
Build UI server and files
|
Build UI server and files
|
||||||
-------------------------
|
-------------------------
|
||||||
In `qortal-ui` directory, run:
|
|
||||||
```
|
```
|
||||||
npm run build
|
npm run build
|
||||||
```
|
```
|
||||||
|
@ -604,7 +604,7 @@ class GroupManagement extends LitElement {
|
|||||||
</select>
|
</select>
|
||||||
</p>
|
</p>
|
||||||
<div style="margin-bottom: 10px;">
|
<div style="margin-bottom: 10px;">
|
||||||
<p style="margin-bottom: 0;">${translate("walletpage.wchange21")} <span style="font-weight: bold;">${this.addGroupAdminFee} QORT<span></p>
|
<p style="margin-bottom: 0;">${translate("walletpage.wchange21")} <span style="font-weight: bold;">${this.createBanFee} QORT<span></p>
|
||||||
<br>
|
<br>
|
||||||
</div>
|
</div>
|
||||||
${this.renderClearSuccess()}
|
${this.renderClearSuccess()}
|
||||||
@ -1500,6 +1500,9 @@ class GroupManagement extends LitElement {
|
|||||||
</span>
|
</span>
|
||||||
<span ?hidden=${this.message === ''} style="${this.error ? 'color:red;' : ''}">
|
<span ?hidden=${this.message === ''} style="${this.error ? 'color:red;' : ''}">
|
||||||
${this.message}
|
${this.message}
|
||||||
|
</span><br>
|
||||||
|
<span>
|
||||||
|
<b>${translate("walletpage.wchange21")} ${this.createFee} QORT.</b>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -1557,6 +1560,9 @@ class GroupManagement extends LitElement {
|
|||||||
</span>
|
</span>
|
||||||
<span ?hidden=${this.message === ''} style="${this.error ? 'color:red;' : ''}">
|
<span ?hidden=${this.message === ''} style="${this.error ? 'color:red;' : ''}">
|
||||||
${this.message}
|
${this.message}
|
||||||
|
</span><br>
|
||||||
|
<span>
|
||||||
|
<b>${translate("walletpage.wchange21")} ${this.joinFee} QORT.</b>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -1619,6 +1625,9 @@ class GroupManagement extends LitElement {
|
|||||||
</span>
|
</span>
|
||||||
<span ?hidden=${this.message === ''} style="${this.error ? 'color:red;' : ''}">
|
<span ?hidden=${this.message === ''} style="${this.error ? 'color:red;' : ''}">
|
||||||
${this.message}
|
${this.message}
|
||||||
|
</span><br>
|
||||||
|
<span>
|
||||||
|
<b>${translate("walletpage.wchange21")} ${this.leaveFee} QORT.</b>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user