jetstream icon indicating copy to clipboard operation
jetstream copied to clipboard

Checkbox column not rendered on subquery table

Open paustint opened this issue 2 years ago • 2 comments

Describe the bug Checkbox not being rendered on subquery table

SELECT Id, Name, ProfileId,
	(
		SELECT Id, PermissionSetId, IsActive
		FROM PermissionSetAssignments
	)
FROM User

image

paustint avatar Feb 27 '23 16:02 paustint

Could not reproduce image

paustint avatar Mar 04 '23 03:03 paustint

this seems to reproduce the issue

SELECT Id, Name, ProfileId,
	(
		SELECT Id, PermissionSetId, IsActive
		FROM PermissionSetAssignments
	)
FROM User

paustint avatar Mar 09 '23 01:03 paustint