Fixed proxy ignore list input that was splitting on dots. #1453

This commit is contained in:
morpheus65535 2021-06-28 06:36:54 -04:00
parent 2b67c5bcba
commit 64cf2bc5d2
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ import React, {
} from "react";
import "./chip.scss";
const SplitKeys = ["Tab", "Enter", " ", ",", ";", "."];
const SplitKeys = ["Tab", "Enter", " ", ",", ";"];
export interface ChipsProps {
disabled?: boolean;