jetstream
jetstream copied to clipboard
Checkbox column not rendered on subquery table
Describe the bug Checkbox not being rendered on subquery table
SELECT Id, Name, ProfileId,
(
SELECT Id, PermissionSetId, IsActive
FROM PermissionSetAssignments
)
FROM User

Could not reproduce

this seems to reproduce the issue
SELECT Id, Name, ProfileId,
(
SELECT Id, PermissionSetId, IsActive
FROM PermissionSetAssignments
)
FROM User