mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-17 23:45:59 +00:00
fixed incorrect naming
This commit is contained in:
@@ -41,9 +41,9 @@ class Analyser extends DatabaseAnalyser {
|
||||
return res;
|
||||
}
|
||||
|
||||
async singleObjectAnalysis(dbhan, typeField) {
|
||||
const structure = await this._runAnalysis(dbhan, typeField);
|
||||
const item = structure[typeField]?.find((i) => i.pureName === dbhan.pureName);
|
||||
async singleObjectAnalysis(name, typeField) {
|
||||
const structure = await this._runAnalysis(name, typeField);
|
||||
const item = structure[typeField]?.find((i) => i.pureName === name.pureName);
|
||||
return item;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user