diff options
author | morpheus65535 <[email protected]> | 2021-06-28 06:36:54 -0400 |
---|---|---|
committer | morpheus65535 <[email protected]> | 2021-06-28 06:36:54 -0400 |
commit | 64cf2bc5d2b3e7b53f0f101d52c44647d8791429 (patch) | |
tree | 990d04a8fb8d54fad04c978a6997db2bc1df8941 | |
parent | 2b67c5bcba5e15af6983c8c786898434f9c3c2ca (diff) | |
download | bazarr-64cf2bc5d2b3e7b53f0f101d52c44647d8791429.tar.gz bazarr-64cf2bc5d2b3e7b53f0f101d52c44647d8791429.zip |
Fixed proxy ignore list input that was splitting on dots. #1453
-rw-r--r-- | frontend/src/components/inputs/Chips.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/inputs/Chips.tsx b/frontend/src/components/inputs/Chips.tsx index e61bf81fb..fc9231f7a 100644 --- a/frontend/src/components/inputs/Chips.tsx +++ b/frontend/src/components/inputs/Chips.tsx @@ -9,7 +9,7 @@ import React, { } from "react"; import "./chip.scss"; -const SplitKeys = ["Tab", "Enter", " ", ",", ";", "."]; +const SplitKeys = ["Tab", "Enter", " ", ",", ";"]; export interface ChipsProps { disabled?: boolean; |