You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yes you are right. I reproduced this in Internet Explorer 11 as well. It's got to do with the lookbehind (or ahead?) in split(/(?<!\\);/). I'm working on it right now. Should be fixed in the next beta.
What this regex does, is find semicolons that are not preceded by a backslash. The idea was that you can escape semicolons that way. But it is a bit of a fix for a theoretical issue. You don;t need semicolons in any of the config settings as of yet. So I just removed this and changed it to items.split(';'). It's more that I am (again...) refactoring the formatting which is why the next beta is taking some time. Let me see if I can quickly throw out a new beta with just this one issue fixed for you ❤️
Causes:
I think I've traced it to ulog, specifically
ulog/mods/options/index.js
Line 70 in c9aca90
The text was updated successfully, but these errors were encountered: