diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-30 19:55:56 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-30 19:57:02 +0800 |
commit | 67f611b63cf80ebfb128bb3fb3d2bf17a90442de (patch) | |
tree | 7c6fc0ae8e8ea7239aea4ef61e00535751344dc5 /Header/CartItem.ui.qml | |
parent | db7d0d21e4c8c2b2a914c279e4efc34d4e1d3db0 (diff) |
Shorten menu item ID
Diffstat (limited to 'Header/CartItem.ui.qml')
-rw-r--r-- | Header/CartItem.ui.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Header/CartItem.ui.qml b/Header/CartItem.ui.qml index 2fbf03b..4f97c29 100644 --- a/Header/CartItem.ui.qml +++ b/Header/CartItem.ui.qml @@ -6,7 +6,7 @@ import Eduport 1.4 import "../Label" as Lbl MenuItem { - id: cartMenuItem + id: menuItem contentItem: ColumnLayout { Loader { @@ -21,7 +21,7 @@ MenuItem { Layout.margins: 16 Loader { - property string imageSource: cartMenuItem + property string imageSource: menuItem .icon.source property int imageWidth: 50 property int imageHeight: 50 @@ -35,7 +35,7 @@ MenuItem { RowLayout { Lbl.H6 { - text: cartMenuItem.text + text: menuItem.text Layout.fillWidth: true } |