mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-29 23:53:57 +00:00
fix
This commit is contained in:
@@ -245,7 +245,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
saveDictionaryDescription_meta: true,
|
saveDictionaryDescription_meta: true,
|
||||||
async saveDictionaryDescription({ appFolder, pureName, schemaName, expresssion, columns, delimiter }) {
|
async saveDictionaryDescription({ appFolder, pureName, schemaName, expression, columns, delimiter }) {
|
||||||
await this.saveConfigFile(
|
await this.saveConfigFile(
|
||||||
appFolder,
|
appFolder,
|
||||||
'dictionary-descriptions.config.json',
|
'dictionary-descriptions.config.json',
|
||||||
@@ -253,7 +253,7 @@ module.exports = {
|
|||||||
{
|
{
|
||||||
schemaName,
|
schemaName,
|
||||||
pureName,
|
pureName,
|
||||||
expresssion,
|
expression,
|
||||||
columns,
|
columns,
|
||||||
delimiter,
|
delimiter,
|
||||||
}
|
}
|
||||||
|
|||||||
2
packages/types/appdefs.d.ts
vendored
2
packages/types/appdefs.d.ts
vendored
@@ -22,7 +22,7 @@ interface VirtualReferenceDefinition {
|
|||||||
interface DictionaryDescriptionDefinition {
|
interface DictionaryDescriptionDefinition {
|
||||||
pureName: string;
|
pureName: string;
|
||||||
schemaName?: string;
|
schemaName?: string;
|
||||||
expresssion: string;
|
expression: string;
|
||||||
columns: string[];
|
columns: string[];
|
||||||
delimiter: string;
|
delimiter: string;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user