mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-14 00:27:40 +00:00
33d38a4081
- Added local pairing signals - Remove slash ending from keystorePath - Implemented localPairingState. Fixed sync new device workflow. - Error message view design update - Moved local pairing status to devices service - ConnectionString automatic validation - Async inputConnectionString - Added all installation properties to model. Minor renaming. - Removed emoji and color customization - Show display name, colorhash and color in device being synced - Add timeout to pairing server - Add device type Fix `DeviceSyncingView` sizing. Fix `inputConnectionString` async task slot.
17 lines
264 B
QML
17 lines
264 B
QML
import QtQuick 2.14
|
|
import StatusQ.Controls 0.1
|
|
|
|
import shared.controls 1.0
|
|
|
|
Column {
|
|
id: root
|
|
|
|
property alias input: codeInput
|
|
|
|
StatusSyncCodeInput {
|
|
id: codeInput
|
|
implicitWidth: 400
|
|
mode: StatusSyncCodeInput.WriteMode
|
|
}
|
|
}
|