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:
Roman Chornii 2024-07-12 16:57:04 +03:00 committed by GitHub
parent 52dc195840
commit 52b1cc3824
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 7 deletions

View File

@ -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) => {

View File

@ -153,7 +153,7 @@ QtObject {
root.setSignerStateChanged(communityId, communityName, status, url)
}
function onOwnershipLost(communityId, communityName) {
function onOwnershipNodeLost(communityId, communityName) {
root.ownershipLost(communityId, communityName)
}

View File

@ -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 === "") {