kintesh / containerise

Firefox extension to automatically open websites in a container
MIT License
414 stars 53 forks source link

CSV Editor breaking Regex with length check #57

Closed p-rintz closed 5 years ago

p-rintz commented 5 years ago

Hello,

The following regex will not work if saved in the CSV editor as when you click save, two spaces will be inserted before and after the comma. Such as this:

From: @^https?://(.{1,15}\.)?(amazon\.co\.uk)$

To: @^https?://(.{1 , 15}\.)?(amazon\.co\.uk)$

When saved in the normal view it will be saved correctly.