Whitespace only changes from lint-fix.

This commit is contained in:
Jason Robbins 2022-06-13 17:01:55 +00:00
Родитель 104ad2943d
Коммит 487ae921fe
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -24,11 +24,11 @@ export class ChromedashTextarea extends SlTextarea {
customCheckValidity(value) {
if (this.multiple) {
if (this.chromedash_split_pattern &&
this.chromedash_single_pattern) {
const items = value.split(new RegExp(this.chromedash_split_pattern));
const singleItemRegex =
this.chromedash_single_pattern) {
const items = value.split(new RegExp(this.chromedash_split_pattern));
const singleItemRegex =
new RegExp('^' + this.chromedash_single_pattern + '$', '');
const valid = items.every((item) => {
const valid = items.every((item) => {
if (!item) {
// ignore empty items
return true;