Skip to content

Commit bbae1bf

Browse files
committed
Rename button: Done to Running.
1 parent 85a6da4 commit bbae1bf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/pages/Index.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<q-btn outline color="vgreen" icon="fas fa-running" class="q-mt-sm q-mx-xs text-vgrey" @click="retreiveReward()" v-if="identity.account_name && !identity.account_run" label="Run" >
2828
<q-tooltip content-class="bg-vgreen text-vdark" content-style="font-size: 16px" :offset="[10, 10]">You need to init your node by pushing the retreive reward action first time.</q-tooltip>
2929
</q-btn>
30-
<q-btn disabled outline color="vgreen" icon="fas fa-running" class="q-mt-sm q-mx-xs text-vgrey" v-if="identity.account_name && identity.account_run" label="Done" />
30+
<q-btn disabled outline color="vgreen" icon="fas fa-running" class="q-mt-sm q-mx-xs text-vgrey" v-if="identity.account_name && identity.account_run" label="Running" />
3131
</div>
3232

3333
<div class="row items-center q-pt-sm justify-end">
@@ -536,6 +536,7 @@ export default {
536536
const eos = new EosWrapper()
537537
const result = await eos.getTable('vdexdposvote', 'vdexdposvote', 'producers')
538538
this.registered_nodes = result.length
539+
this.registered_nodes_names = []
539540
var self = this
540541
result.forEach(function (item) {
541542
self.registered_nodes_names.push(item.owner)

0 commit comments

Comments
 (0)