File tree Expand file tree Collapse file tree
business/src/views/connections Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -220,7 +220,10 @@ const transformData = (row: Connection) => {
220220 row .database_name = row .config .database || row .config .sid
221221 row .database_owner = row .config .schema
222222 row .database_username = row .config .user || row .config .username
223- row .addtionalString = row .config .extParams || row .config .addtionalString
223+ row .addtionalString =
224+ row .config .extParams ||
225+ row .config .additionalString ||
226+ row .config .addtionalString
224227 row .database_datetype_without_timezone = row .config .timezone
225228 row .sourceFrom = getSourceFrom (row )
226229 row .loadSchemaTime = row .loadSchemaTime
Original file line number Diff line number Diff line change @@ -71,7 +71,8 @@ export default {
7171 const data = cloneDeep (this .viewData )
7272 const { config } = data
7373 config .username = config .user || config .username
74- config .additionalString = config .extParams || config .addtionalString
74+ config .additionalString =
75+ config .extParams || config .additionalString || config .addtionalString
7576
7677 if (config .uri && config .isUri !== false ) {
7778 const regResult =
You can’t perform that action at this time.
0 commit comments