mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-27 10:07:22 +00:00
Fixed proxy ignore list input that was splitting on dots. #1453
This commit is contained in:
parent
2b67c5bcba
commit
64cf2bc5d2
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ import React, {
|
|||
} from "react";
|
||||
import "./chip.scss";
|
||||
|
||||
const SplitKeys = ["Tab", "Enter", " ", ",", ";", "."];
|
||||
const SplitKeys = ["Tab", "Enter", " ", ",", ";"];
|
||||
|
||||
export interface ChipsProps {
|
||||
disabled?: boolean;
|
||||
|
|
Loading…
Reference in a new issue