Announcement

Collapse
No announcement yet.

Multi Enum search with "/" in label

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • 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.

  • #2
    Hello

    Reproduced. Will be fixed.

    Thanks

    Comment


    • #3
      Awesome team :-) Thanks

      Comment


      • #4
        you can fix it before release comes.


        client/src/views/fields/array.js


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

        Comment


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

          Comment

          Working...
          X