stores: flatNetworks removed from shared/RootStore
This commit is contained in:
parent
1b3a4cf955
commit
a46f3b0864
|
@ -24,8 +24,6 @@ QtObject {
|
||||||
|
|
||||||
property TokenMarketValuesStore marketValueStore: TokenMarketValuesStore {}
|
property TokenMarketValuesStore marketValueStore: TokenMarketValuesStore {}
|
||||||
|
|
||||||
property var flatNetworks: networksModule.flatNetworks
|
|
||||||
|
|
||||||
function setNeverAskAboutUnfurlingAgain(value) {
|
function setNeverAskAboutUnfurlingAgain(value) {
|
||||||
localAccountSensitiveSettings.neverAskAboutUnfurlingAgain = value;
|
localAccountSensitiveSettings.neverAskAboutUnfurlingAgain = value;
|
||||||
}
|
}
|
||||||
|
|
|
@ -489,7 +489,7 @@ ColumnLayout {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
modelData: transactionDelegate.model.activityEntry
|
modelData: transactionDelegate.model.activityEntry
|
||||||
timeStampText: isModelDataValid ? LocaleUtils.formatRelativeTimestamp(modelData.timestamp * 1000, true) : ""
|
timeStampText: isModelDataValid ? LocaleUtils.formatRelativeTimestamp(modelData.timestamp * 1000, true) : ""
|
||||||
flatNetworks: RootStore.flatNetworks
|
flatNetworks: root.walletRootStore.flatNetworks
|
||||||
currenciesStore: RootStore.currencyStore
|
currenciesStore: RootStore.currencyStore
|
||||||
walletRootStore: root.walletRootStore
|
walletRootStore: root.walletRootStore
|
||||||
showAllAccounts: root.showAllAccounts
|
showAllAccounts: root.showAllAccounts
|
||||||
|
@ -554,7 +554,7 @@ ColumnLayout {
|
||||||
TransactionDelegate {
|
TransactionDelegate {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
|
|
||||||
flatNetworks: RootStore.flatNetworks
|
flatNetworks: root.walletRootStore.flatNetworks
|
||||||
currenciesStore: RootStore.currencyStore
|
currenciesStore: RootStore.currencyStore
|
||||||
walletRootStore: root.walletRootStore
|
walletRootStore: root.walletRootStore
|
||||||
loading: true
|
loading: true
|
||||||
|
|
Loading…
Reference in New Issue