Issue with fields starting with same characters
Closed this issue · 1 comments
sharmaparesh commented
Looks like there is a bug if there are multiple fields starting with same characters and we want to hide one of them:
-
This hides both
email
andemail_permission
(reference).# table: customers # fields: name, email, email_permission Hypershield.schemas = { hypershield: { hide: ['email'] } }
-
I can make it work with, and I wonder if this is the intended behaviour?
Hypershield.schemas = { hypershield: { hide: ['email'] , show: ['email_permission']} }
ankane commented
Hi @sharmaparesh, that's the intended behavior.