We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d1a439 commit c09f6d9Copy full SHA for c09f6d9
redisinsight/api/src/modules/database-import/database-import.service.ts
@@ -117,11 +117,9 @@ export class DatabaseImportService {
117
try {
118
const data: any = {};
119
120
- // set this is a new connection
121
- data.new = true
+ // set this is a new connection
+ data.new = true;
122
123
- this.fieldsMapSchema.forEach(([field, paths]) => {
124
- let value;
125
this.fieldsMapSchema.forEach(([field, paths]) => {
126
let value;
127
@@ -130,8 +128,8 @@ export class DatabaseImportService {
130
128
return value === undefined;
131
129
});
132
133
- set(data, field, value);
134
- });
+ set(data, field, value);
+ });
135
136
// set database name if needed
137
if (!data.name) {
0 commit comments