Skip to content

Add DataField visibility setting #287

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

beastbytes
Copy link
Contributor

Q A
Is bugfix?
New feature? ✔️
Breaks BC?

Solution for Issue #286, including tests

'{label}' => $label,
'{value}' => $value,
]);
if ($field['isVisible']) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd skip the iteration instead of wrapping code. Reads a bit better.

Suggested change
if ($field['isVisible']) {
if (!$field['isVisible']) {
continue;
}

@samdark
Copy link
Member

samdark commented Jun 18, 2025

Overall, I like it. Tests seem to fail, though.

@samdark samdark requested a review from vjik June 18, 2025 20:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants