ankane/hypershield

Issue with fields starting with same characters

Closed this issue · 1 comments

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 and email_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']} }

Hi @sharmaparesh, that's the intended behavior.