Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
4d1a998
chore: add test infrastructure for component testing
vitormattos Mar 20, 2026
6b07595
chore: update vitest config for component testing
vitormattos Mar 20, 2026
1b4e633
feat: create AdminSupportBanner component
vitormattos Mar 20, 2026
e1def5c
feat: create AdminSelectOptionsSection component
vitormattos Mar 20, 2026
aa664ea
test: add AdminSupportBanner component specs
vitormattos Mar 20, 2026
cd674fd
test: add AdminSelectOptionsSection component specs
vitormattos Mar 20, 2026
db8df9e
refactor: extract select options editor into dedicated component
vitormattos Mar 20, 2026
2067dd8
fix(api): reject inactive admin field definitions
vitormattos Mar 20, 2026
ec6c1c5
test(api): cover inactive admin field definitions
vitormattos Mar 20, 2026
f03e4e7
feat(ui): refine admin user fields dialog copy
vitormattos Mar 20, 2026
f8cdf61
feat(personal): rename embedded profile anchor link
vitormattos Mar 20, 2026
394f247
feat(users): rename profile field action label
vitormattos Mar 20, 2026
d54b93f
feat(personal): refine additional fields copy
vitormattos Mar 20, 2026
48065b9
feat(workflow): clarify form placeholders
vitormattos Mar 20, 2026
c62ee97
feat(playwright): scope screenshot refresh to changed targets
vitormattos Mar 20, 2026
c25734f
chore(deps): update frontend lockfile
vitormattos Mar 20, 2026
ed6b72d
docs(screenshots): refresh admin catalog image
vitormattos Mar 20, 2026
d30c089
docs(screenshots): refresh admin catalog thumbnail
vitormattos Mar 20, 2026
ec275f7
docs(screenshots): refresh personal settings image
vitormattos Mar 20, 2026
eb0843e
docs(screenshots): refresh personal settings thumbnail
vitormattos Mar 20, 2026
05e92e2
docs(screenshots): refresh user management dialog image
vitormattos Mar 20, 2026
34e8cbc
docs(screenshots): refresh user management dialog thumbnail
vitormattos Mar 20, 2026
80b6dd5
docs(screenshots): refresh workflow notification thumbnail
vitormattos Mar 20, 2026
b4793fd
test(playwright): align profile fields e2e with current UI copy
vitormattos Mar 20, 2026
4d5a24c
test(playwright): update workflow e2e selectors and placeholders
vitormattos Mar 20, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified img/screenshots/admin-catalog-thumb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/screenshots/admin-catalog.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/screenshots/personal-settings-thumb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/screenshots/personal-settings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/screenshots/user-management-dialog-thumb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/screenshots/user-management-dialog.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/screenshots/workflow-notify-admins-thumb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion lib/Controller/FieldValueAdminApiController.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public function upsert(
}

$definition = $this->fieldDefinitionService->findById($fieldDefinitionId);
if ($definition === null) {
if ($definition === null || !$definition->getActive()) {
return new DataResponse(['message' => 'Field definition not found'], Http::STATUS_NOT_FOUND);
}

Expand Down
Loading
Loading