@lingk/sync 2.2.4 → 2.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/credentialSections.js +3 -2
- package/build/credentialSections.js.map +1 -1
- package/build/lightning.js.map +1 -1
- package/build/lightningStyles.js.map +1 -1
- package/build/lingk.js.map +1 -1
- package/build/lingkStyles.js.map +1 -1
- package/build/loadData.js.map +1 -1
- package/build/main.js +3 -2
- package/build/main.js.map +1 -1
- package/build/metadataDropdown.js.map +1 -1
- package/build/metadataFunctions.js.map +1 -1
- package/build/reducer.js.map +1 -1
- package/build/saveData.js.map +1 -1
- package/package.json +1 -1
|
@@ -6347,8 +6347,9 @@ module.exports =
|
|
|
6347
6347
|
var _state = this.state,
|
|
6348
6348
|
APIAccess = _state.APIAccess,
|
|
6349
6349
|
defaultConnection = _state.defaultConnection;
|
|
6350
|
+
var firstConnectionOfaType = this.props.wizard.firstConnectionOfaType;
|
|
6350
6351
|
|
|
6351
|
-
this.props.postCredentials(this.state.actualCreds, APIAccess, defaultConnection, wizard);
|
|
6352
|
+
this.props.postCredentials(this.state.actualCreds, APIAccess, defaultConnection, wizard, firstConnectionOfaType);
|
|
6352
6353
|
}
|
|
6353
6354
|
}, {
|
|
6354
6355
|
key: "render",
|
|
@@ -7158,7 +7159,7 @@ module.exports =
|
|
|
7158
7159
|
var Toggle = inputs.ToggleButtonGroup;
|
|
7159
7160
|
var Spinner = inputs.Spinner;
|
|
7160
7161
|
var credentials = config && config.credentials.filter(function (o) {
|
|
7161
|
-
if (o === "privateKey") {
|
|
7162
|
+
if (o === "privateKey" || o === "passphrase") {
|
|
7162
7163
|
var i = "ssh-key";
|
|
7163
7164
|
var j = "two-Factor Auth";
|
|
7164
7165
|
if (creds["credentialType"] === i || creds["credentialType"] === j) {
|