Index: sources/gui/qml/dialogs/headerbar/HeaderbarInformation.qml =================================================================== diff -u -r57ea732311e6f4c746974f5a52316f63dec23ca8 -rbf9223700613ced6c377f3e3a7b4de8367c30474 --- sources/gui/qml/dialogs/headerbar/HeaderbarInformation.qml (.../HeaderbarInformation.qml) (revision 57ea732311e6f4c746974f5a52316f63dec23ca8) +++ sources/gui/qml/dialogs/headerbar/HeaderbarInformation.qml (.../HeaderbarInformation.qml) (revision bf9223700613ced6c377f3e3a7b4de8367c30474) @@ -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 }