@fuentis/phoenix-ui 0.0.9-alpha.412 → 0.0.9-alpha.413

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3467,7 +3467,8 @@ class WhiteSpaceValidator {
3467
3467
 
3468
3468
  function noDangerousCharsValidator() {
3469
3469
  // Blocks only specific dangerous characters: < > " = $ /
3470
- const dangerousCharsPattern = /[<>"=$/]/;
3470
+ //[<>"=$/]/ This was before but some catalog name or description contains "/"" so when field is desibled we cannot save form
3471
+ const dangerousCharsPattern = /[<>"=$]/;
3471
3472
  return (control) => {
3472
3473
  const value = control.value;
3473
3474
  if (!value)