Merge remote-tracking branch 'origin/master'

This commit is contained in:
Marco Zeisler 2021-05-12 12:09:11 +02:00
commit 525ae0d985

View File

@ -1,7 +1,7 @@
import {AbstractControl} from '@angular/forms';
export function keywordsValidator(control: AbstractControl): { [key: string]: any } | null {
if (control.value === undefined) {
if (control.value === null) {
return null;
}
let split: string[];