Clean
This commit is contained in:
parent
582854cc2e
commit
5b3bd1ad17
|
@ -121,12 +121,8 @@ function getInvalidDatasources(
|
||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
|
|
||||||
function getAllComponentsInScreen(screen: Screen) {
|
|
||||||
return findAllComponents(screen.props) as Component[]
|
|
||||||
}
|
|
||||||
|
|
||||||
function getMissingRequiredSettings(screen: Screen) {
|
function getMissingRequiredSettings(screen: Screen) {
|
||||||
const allComponents = getAllComponentsInScreen(screen)
|
const allComponents = findAllComponents(screen.props) as Component[]
|
||||||
|
|
||||||
const result: Record<string, UIComponentError[]> = {}
|
const result: Record<string, UIComponentError[]> = {}
|
||||||
for (const component of allComponents) {
|
for (const component of allComponents) {
|
||||||
|
|
Loading…
Reference in New Issue