@lingk/sync 1.0.17 → 1.0.19

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.
@@ -147,7 +147,8 @@ module.exports =
147
147
  'Client Key'
148
148
  ),
149
149
  _react2.default.createElement('br', null),
150
- _react2.default.createElement(Input, { value: 'client.secret.' + tenantKey + '.' + accountKey, readOnly: true })
150
+ _react2.default.createElement(Input, { value: 'client.secret.' + tenantKey + '.' + accountKey, readOnly: true,
151
+ style: { width: 300 } })
151
152
  ),
152
153
  _react2.default.createElement(
153
154
  'div',
@@ -159,7 +160,7 @@ module.exports =
159
160
  ),
160
161
  _react2.default.createElement('br', null),
161
162
  _react2.default.createElement(Input, { value: secret, readOnly: true,
162
- style: { display: 'inline-block' } }),
163
+ style: { display: 'inline-block', width: 300 } }),
163
164
  _react2.default.createElement(
164
165
  Button,
165
166
  {
@@ -725,8 +726,10 @@ module.exports =
725
726
 
726
727
  var isAdapter = config && (config.metadataEndpoint === 'testconnection' || config.metadataEndpoint === 'adaptermetadata');
727
728
 
729
+ var isAWS = config.type.startsWith('AWS');
730
+
728
731
  var isSFTP = config.type === 'SFTP';
729
- var noRootUrl = isSFTP;
732
+ var noRootUrl = isSFTP || isAWS;
730
733
 
731
734
  return _react2.default.createElement(
732
735
  'div',