Report wizard add red border to report name [SCI-5703] (#3309)

This commit is contained in:
aignatov-bio 2021-05-12 12:22:40 +02:00 committed by GitHub
parent d02f4a7ff9
commit e16b3b0d61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View file

@ -1156,7 +1156,7 @@ function reportHandsonTableConverter() {
validateGenerateButtons();
});
$('.report-name').on('change', function() {
$('.report-name').on('keyup', function() {
validateGenerateButtons();
});
}

View file

@ -22,6 +22,14 @@
.report-name {
@include font-h1;
&:placeholder-shown {
border: 1px solid $brand-danger;
&::placeholder {
color: $brand-danger;
}
}
}
}