Skip to content

Commit 5d861c7

Browse files
committed
Merge branch 'feat/add-default-value-for-create-forms' of github.com:backstagephp/fields into feat/add-default-value-for-create-forms
2 parents 7ab0058 + 527a424 commit 5d861c7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Fields/Base.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ protected function excludeFromBaseSchema(): array
6969
private function filterExcludedFields(array $schema): array
7070
{
7171
$excluded = $this->excludeFromBaseSchema();
72-
72+
7373
if (empty($excluded)) {
7474
return $schema;
7575
}
@@ -80,6 +80,7 @@ private function filterExcludedFields(array $schema): array
8080
return false;
8181
}
8282
}
83+
8384
return true;
8485
});
8586
}
@@ -100,7 +101,7 @@ private function fieldContainsConfigKey($field, string $configKey): bool
100101
}
101102
}
102103
}
103-
104+
104105
return false;
105106
}
106107

0 commit comments

Comments
 (0)