Skip to content
This repository was archived by the owner on Oct 22, 2021. It is now read-only.

Commit 6f0c023

Browse files
committed
Update components
1 parent 3e89422 commit 6f0c023

File tree

14 files changed

+22
-22
lines changed

14 files changed

+22
-22
lines changed

components/Modal/Action.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -118,27 +118,27 @@
118118
v-if="[defaultStep, feeStep, signStep].includes(step)"
119119
class="action-modal-group"
120120
>
121-
<Button
121+
<CommonButton
122122
id="closeBtn"
123123
value="Cancel"
124124
type="secondary"
125125
@click.native="close"
126126
/>
127-
<Button
127+
<CommonButton
128128
v-if="requiresSignIn"
129129
v-focus
130130
value="Sign In"
131131
type="primary"
132132
@click.native="goToSession"
133133
@click.enter.native="goToSession"
134134
/>
135-
<Button
135+
<CommonButton
136136
v-else-if="sending"
137137
value="Sending..."
138138
disabled="disabled"
139139
type="primary"
140140
/>
141-
<Button
141+
<CommonButton
142142
v-else-if="step !== signStep"
143143
ref="next"
144144
type="primary"
@@ -147,7 +147,7 @@
147147
:disabled="disabled || !balancesLoaded"
148148
@click.native="validateChangeStep"
149149
/>
150-
<Button
150+
<CommonButton
151151
v-else
152152
type="primary"
153153
value="Send"

components/Modal/Stake.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
type="number"
4444
@keyup.enter.native="enterPressed"
4545
/>
46-
<Button
46+
<CommonButton
4747
type="button"
4848
class="secondary addon-max"
4949
value="Max"

components/Modal/Unstake.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
type="number"
4343
@keyup.enter.native="enterPressed"
4444
/>
45-
<Button
45+
<CommonButton
4646
type="button"
4747
class="secondary addon-max"
4848
value="Set Max"

components/address/NewSeedStep.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
</CommonFormGroup>
3535
</div>
3636
<div class="session-footer">
37-
<Button value="Next" type="submit" />
37+
<CommonButton value="Next" type="submit" />
3838
</div>
3939
</Form>
4040
</template>

components/address/PasswordStep.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
/>
4848
</CommonFormGroup>
4949
<div class="session-footer">
50-
<Button value="Next" type="submit" />
50+
<CommonButton value="Next" type="submit" />
5151
</div>
5252
</div>
5353
</Form>

components/common/UserMenu.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</i>
1111
</div>
1212
<template v-else>
13-
<Button
13+
<CommonButton
1414
value="Get Started"
1515
class="menu-button"
1616
type="secondary"

components/governance/ParticipantList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
</li>
4444
</ul>
4545
<div v-if="moreAvailable" class="loadmore-button-container">
46-
<Button
46+
<CommonButton
4747
id="loadMoreBtn"
4848
value="Load More"
4949
type="secondary"

components/governance/ProposalHeader.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212

1313
<div class="buttons">
1414
<CopyButton :value="currentRoute" />
15-
<Button
15+
<CommonButton
1616
v-if="status.value === governanceStatusEnum.DEPOSITING"
1717
id="deposit-btn"
1818
class="action-button"
1919
value="Deposit"
2020
color="primary"
2121
@click.native="$emit(`open-deposit-modal`)"
2222
/>
23-
<Button
23+
<CommonButton
2424
v-if="status.value === governanceStatusEnum.VOTING"
2525
id="vote-btn"
2626
class="action-button"

pages/explore/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
</CommonFormGroup>
1919
</div>
2020
<div class="session-footer">
21-
<Button value="Explore" />
21+
<CommonButton value="Explore" />
2222
</div>
2323
</Form>
2424
</template>

pages/extension/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<h2 class="session-title">Lunie Browser Extension</h2>
55

66
<div v-if="!filteredAccounts.length && !initialized" class="session-main">
7-
<Button
7+
<CommonButton
88
value="Connect Lunie Extension"
99
:loading="loading"
1010
@click.native="connect"
@@ -27,7 +27,7 @@
2727
Below is a list of accounts we've received from the Lunie browser
2828
extension.
2929
</p>
30-
<AccountList
30+
<AddressAccountList
3131
:accounts="filteredAccounts"
3232
:button-action="signInAndRedirect"
3333
:button-text="`Use Account`"

0 commit comments

Comments
 (0)