Lint
This commit is contained in:
parent
8db5b87136
commit
b6f9ae762d
|
@ -97,7 +97,10 @@ const SCHEMA: Integration = {
|
||||||
default: true,
|
default: true,
|
||||||
display: "Configure Active Directory",
|
display: "Configure Active Directory",
|
||||||
hidden: "'{{authType}}' !== 'Active Directory'",
|
hidden: "'{{authType}}' !== 'Active Directory'",
|
||||||
config: { openByDefault: true, nestedFields: true },
|
config: {
|
||||||
|
openByDefault: true,
|
||||||
|
nestedFields: true,
|
||||||
|
},
|
||||||
fields: {
|
fields: {
|
||||||
clientId: {
|
clientId: {
|
||||||
type: DatasourceFieldType.STRING,
|
type: DatasourceFieldType.STRING,
|
||||||
|
|
|
@ -120,7 +120,10 @@ interface DatasourceSelectFieldConfig extends DatasourceBasicFieldConfig {
|
||||||
|
|
||||||
interface DatasourceFieldGroupConfig extends DatasourceBasicFieldConfig {
|
interface DatasourceFieldGroupConfig extends DatasourceBasicFieldConfig {
|
||||||
type: DatasourceFieldType.FIELD_GROUP
|
type: DatasourceFieldType.FIELD_GROUP
|
||||||
config: { openByDefault?: boolean; nestedFields?: boolean }
|
config: {
|
||||||
|
openByDefault?: boolean
|
||||||
|
nestedFields?: boolean
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
type DatasourceFieldConfig =
|
type DatasourceFieldConfig =
|
||||||
|
|
Loading…
Reference in New Issue