fix(statusProfileNavBarTabButton): Fixed backgound color and ring for… (#15534)
* fix(statusProfileNavBarTabButton): Fixed backgound color and ring for StatusNavBarTabButton that's displayed at left bottom of the main window. Fixed signal typo in CommunityTokensStore. Closes #15479. * fix(CommunityTokenStore): fixed signal handler name on qml side.
This commit is contained in:
parent
52dc195840
commit
52b1cc3824
|
@ -29,15 +29,15 @@ import shared.popups.send 1.0 as SendPopups
|
|||
import shared.popups.send.views 1.0
|
||||
import shared.stores.send 1.0
|
||||
|
||||
import StatusQ 0.1
|
||||
import StatusQ.Core 0.1
|
||||
import StatusQ.Core.Theme 0.1
|
||||
import StatusQ.Core.Utils 0.1 as SQUtils
|
||||
import StatusQ.Components 0.1
|
||||
import StatusQ.Controls 0.1
|
||||
import StatusQ.Layout 0.1
|
||||
import StatusQ.Popups 0.1
|
||||
import StatusQ.Popups.Dialog 0.1
|
||||
import StatusQ.Core 0.1
|
||||
import StatusQ.Core.Utils 0.1
|
||||
import StatusQ 0.1
|
||||
|
||||
import AppLayouts.Browser.stores 1.0 as BrowserStores
|
||||
import AppLayouts.stores 1.0
|
||||
|
@ -1972,7 +1972,7 @@ Item {
|
|||
if (showQR.showSingleAccount || showQR.showForSavedAddress) {
|
||||
return showQR.selectedAccount
|
||||
}
|
||||
return selectedReceiverAccount.item ?? ModelUtils.get(appMain.transactionStore.accounts, 0)
|
||||
return selectedReceiverAccount.item ?? SQUtils.ModelUtils.get(appMain.transactionStore.accounts, 0)
|
||||
}
|
||||
|
||||
onUpdateSelectedAddress: (address) => {
|
||||
|
|
|
@ -153,7 +153,7 @@ QtObject {
|
|||
root.setSignerStateChanged(communityId, communityName, status, url)
|
||||
}
|
||||
|
||||
function onOwnershipLost(communityId, communityName) {
|
||||
function onOwnershipNodeLost(communityId, communityName) {
|
||||
root.ownershipLost(communityId, communityName)
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
pragma Singleton
|
||||
|
||||
import QtQuick 2.13
|
||||
import QtQuick 2.15
|
||||
|
||||
import shared 1.0
|
||||
|
||||
|
@ -280,7 +280,7 @@ QtObject {
|
|||
}
|
||||
}
|
||||
|
||||
function validatePINs(item, firstPINField, repeatPINField) {
|
||||
function validatePINs(item, firstPINField, repeatPINField) {
|
||||
switch (item) {
|
||||
case "first":
|
||||
if (firstPINField.pinInput === "") {
|
||||
|
|
Loading…
Reference in New Issue