mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 20:26:23 +00:00
all analyse tests passes locally
This commit is contained in:
parent
d058003cc9
commit
d67637c7e8
@ -104,7 +104,10 @@ export class DatabaseAnalyser {
|
||||
if (typeField == objectTypeField) return [pureName];
|
||||
}
|
||||
if (this.modifications) {
|
||||
return this.modifications.filter(x => x.objectTypeField == objectTypeField).map(x => x.newName.pureName);
|
||||
return this.modifications
|
||||
.filter(x => x.objectTypeField == objectTypeField)
|
||||
.filter(x => x.newName)
|
||||
.map(x => x.newName.pureName);
|
||||
}
|
||||
return allPureNames;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user