Multi Enum search with "/" in label

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • wtconseil
    Active Community Member
    • Apr 2015
    • 335

    Multi Enum search with "/" in label

    Hi there

    I have an issue with multiEnum search.
    " / " caracter seems to be well escaped in space before/after... but not if it's stuck to other strings.

    Here is the network analysis when querying Contact referential
    cf attachments

    (with 4.8.2 version)
    Attached Files
    Last edited by wtconseil; 09-28-2017, 11:07 AM.
  • tanya
    Senior Member
    • Jun 2014
    • 4308

    #2
    Hello

    Reproduced. Will be fixed.

    Thanks

    Comment

    • wtconseil
      Active Community Member
      • Apr 2015
      • 335

      #3
      Awesome team :-) Thanks

      Comment

      • tanya
        Senior Member
        • Jun 2014
        • 4308

        #4
        you can fix it before release comes.


        client/src/views/fields/array.js


        value.replace(/\//, '\\\\/' )
        to
        value.replace(/\//g, '\\\\/' )

        Comment

        • wtconseil
          Active Community Member
          • Apr 2015
          • 335

          #5
          Awesome, perfect :-) !
          Thank you so much!
          ​​​​​​​

          Comment

          Working...