Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
import { Validator } from "../Validator"
export default class TextValidator extends Validator {
constructor() {
super(
"text",
"A longer piece of text. Uses an textArea instead of a textField",
true
)
}