diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-04-12 18:30:01 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-04-12 18:30:01 +0800 |
commit | 2127dd61cda7dcb65b4edd51556158a8e79b0795 (patch) | |
tree | 0ccdd70c8b925b4a298bfcb1402917c986054a1b /Shop/Checkout/RightSidebar/OrderSummary.ui.qml | |
parent | 89fcfe5ec1073fd374a8bae3d8457bebd96453c8 (diff) |
Just use (BS) Label now instead of Body
Diffstat (limited to 'Shop/Checkout/RightSidebar/OrderSummary.ui.qml')
-rw-r--r-- | Shop/Checkout/RightSidebar/OrderSummary.ui.qml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Shop/Checkout/RightSidebar/OrderSummary.ui.qml b/Shop/Checkout/RightSidebar/OrderSummary.ui.qml index 7564106..610a393 100644 --- a/Shop/Checkout/RightSidebar/OrderSummary.ui.qml +++ b/Shop/Checkout/RightSidebar/OrderSummary.ui.qml @@ -31,9 +31,10 @@ ColumnLayout { implicitHeight: codeLabel.implicitHeight + codeValue.implicitHeight - Body { + Label { id: codeLabel text: qsTr("Transaction code") + wrapMode: Label.Wrap anchors.verticalCenter: parent.verticalCenter } @@ -178,9 +179,10 @@ ColumnLayout { anchors.verticalCenter: parent.verticalCenter } - Body { + Label { id: discountValue text: "-$20" + wrapMode: Label.Wrap anchors { right: parent.right verticalCenter: parent.verticalCenter |