From 86a57a308bf624501757d9ce4e63e2d23786a48d Mon Sep 17 00:00:00 2001 From: Pascal Precht Date: Thu, 14 Oct 2021 13:10:47 +0200 Subject: [PATCH] refactor: move `LabelValueRow` to ui/shared/panels --- ui/app/AppLayouts/Browser/popups/SignMessageModal.qml | 1 + ui/shared/TransactionPreview.qml | 1 + ui/shared/{ => panels}/LabelValueRow.qml | 3 ++- 3 files changed, 4 insertions(+), 1 deletion(-) rename ui/shared/{ => panels}/LabelValueRow.qml (98%) diff --git a/ui/app/AppLayouts/Browser/popups/SignMessageModal.qml b/ui/app/AppLayouts/Browser/popups/SignMessageModal.qml index 98d3bd1e4d..10fa2c00ad 100644 --- a/ui/app/AppLayouts/Browser/popups/SignMessageModal.qml +++ b/ui/app/AppLayouts/Browser/popups/SignMessageModal.qml @@ -6,6 +6,7 @@ import QtGraphicalEffects 1.13 import utils 1.0 import "../../../../shared" +import "../../../../shared/panels" import "../../../../shared/status" import "../stores" diff --git a/ui/shared/TransactionPreview.qml b/ui/shared/TransactionPreview.qml index 7a9c22684f..a6df5a35c6 100644 --- a/ui/shared/TransactionPreview.qml +++ b/ui/shared/TransactionPreview.qml @@ -5,6 +5,7 @@ import QtGraphicalEffects 1.13 import utils 1.0 import "../shared/status" +import "../shared/panels" Item { id: root diff --git a/ui/shared/LabelValueRow.qml b/ui/shared/panels/LabelValueRow.qml similarity index 98% rename from ui/shared/LabelValueRow.qml rename to ui/shared/panels/LabelValueRow.qml index f8f55d06a3..ad6d9a8783 100644 --- a/ui/shared/LabelValueRow.qml +++ b/ui/shared/panels/LabelValueRow.qml @@ -3,6 +3,7 @@ import QtQuick.Controls 2.13 import QtQuick.Layouts 1.13 import utils 1.0 +import "../" Item { id: itmFrom @@ -29,4 +30,4 @@ Item { anchors.verticalCenter: parent.verticalCenter height: parent.height } -} \ No newline at end of file +}