Index: sources/gui/qml/dialogs/headerbar/HeaderbarInformation.qml =================================================================== diff -u -r164ece178bc4bbe6d31605e6ee711f513bdfc48a -rb8a9627cf291b564b0fc1570f9c0a97fa6873035 --- sources/gui/qml/dialogs/headerbar/HeaderbarInformation.qml (.../HeaderbarInformation.qml) (revision 164ece178bc4bbe6d31605e6ee711f513bdfc48a) +++ sources/gui/qml/dialogs/headerbar/HeaderbarInformation.qml (.../HeaderbarInformation.qml) (revision b8a9627cf291b564b0fc1570f9c0a97fa6873035) @@ -1,5 +1,6 @@ import QtQuick 2.12 +import "qrc:/" import "qrc:/components" import "qrc:/globals" @@ -48,7 +49,7 @@ anchors.verticalCenter: parent.verticalCenter Text { id: _name - color : "#2E5E92" + color : Colors.dialogText text : modelData.name width : leftColumnWidth font.pixelSize : Fonts.fontPixelDialogText @@ -77,6 +78,11 @@ } } + SDCInfo { id: _sdCardInfo + width : parent.width + height : 75 + } + Row { id: _qrRow spacing : Variables.defaultMargin anchors.left : parent.left @@ -87,7 +93,7 @@ Text { id: _qrCodeInstructions anchors.bottom : _qrCode.bottom - text : qsTr("Scan for electronic instructions for use (eIFU)" ) + text : qsTr("Customer Service Number: %1\nScan for electronic instructions for use (eIFU)").arg("(123) 456-7890") color : Colors.dialogText font.pixelSize : Fonts.fontPixelDialogText }