Skip to content

Commit 6169714

Browse files
authored
fixing up qml client certificate view (#404)
1 parent 24d34d0 commit 6169714

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

uitools/import/Esri/ArcGISRuntime/Toolkit/ClientCertificateView.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Dialog {
118118
Connections {
119119
target: controller
120120

121-
onClientCertificatePasswordRequired: {
121+
function onClientCertificatePasswordRequired(certificate) {
122122
const dialog = passwordDialog.createObject(
123123
clientCertificateView.parent, { certificate: certificate});
124124
dialog.open();

uitools/import/Esri/ArcGISRuntime/Toolkit/Controller/AuthenticationController.qml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ QtObject {
8181
property int currentChallengeFailureCount: internal.currentChallenge ? internal.currentChallenge.failureCount : 0;
8282

8383
/*!
84-
\qmlproperty int clientCertificateInfos
84+
\qmlproperty list<string> clientCertificateInfos
8585
\brief The list of ClientCertificateInfo strings currently held by the
8686
AuthenticationManager.
8787
*/
@@ -141,7 +141,7 @@ QtObject {
141141

142142
internal.currentChallenge = challenge;
143143
}
144-
function onClientCertificatePasswordRequired() {
144+
function onClientCertificatePasswordRequired(certificate) {
145145
authenticationController.clientCertificatePasswordRequired(certificate);
146146
}
147147
}

0 commit comments

Comments
 (0)