final fix
This commit is contained in:
parent
b32527e057
commit
ce9ea1f580
@ -341,7 +341,7 @@ export default {
|
||||
if (currency !== this.nativeCurrency) {
|
||||
this.$store.dispatch('application/setDefaultEthToReceive', { currency })
|
||||
}
|
||||
this.$store.dispatch('loading/updateProgress', { progress: 100 })
|
||||
this.$store.dispatch('loading/updateProgress', { progress: -1 })
|
||||
this.depositsPast = Number(depositsPast) <= 0 ? 0 : depositsPast
|
||||
this.depositTxHash = txHash
|
||||
this.depositTimestamp = timestamp
|
||||
|
@ -1,7 +1,7 @@
|
||||
export const state = () => {
|
||||
return {
|
||||
message: '',
|
||||
progress: '',
|
||||
progress: -1,
|
||||
enabled: false,
|
||||
type: null
|
||||
}
|
||||
@ -19,7 +19,7 @@ export const state = () => {
|
||||
DISABLE(state) {
|
||||
state.message = ''
|
||||
state.enabled = false
|
||||
state.progress = ''
|
||||
state.progress = -1
|
||||
state.type = null
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user