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