mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-15 09:04:45 +00:00
d511c25d2e
* chore: remove old code about ID verification * refactor(trust): remove untrustowrthy and isVerified from items and use trustStatus * chore(status-go): up status-go to get fix for trustStatus reseting Fixes #16392 * chore: remove verified/trusted profile showcase category
30 lines
633 B
QML
30 lines
633 B
QML
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.15
|
|
import QtQml.Models 2.15
|
|
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Controls 0.1
|
|
|
|
CommonContactDialog {
|
|
id: root
|
|
|
|
title: qsTr("Mark as trusted")
|
|
|
|
StatusBaseText {
|
|
Layout.fillWidth: true
|
|
wrapMode: Text.WordWrap
|
|
text: qsTr("Mark users as trusted only if you're 100% sure who they are.")
|
|
}
|
|
|
|
rightButtons: ObjectModel {
|
|
StatusFlatButton {
|
|
text: qsTr("Cancel")
|
|
onClicked: root.close()
|
|
}
|
|
StatusButton {
|
|
text: qsTr("Mark as trusted")
|
|
onClicked: root.accepted()
|
|
}
|
|
}
|
|
}
|