fix name of languages input in coach form validation

pull/6809/head
Niklas Fiekas 2020-06-11 21:49:34 +02:00
parent 52ecea1b82
commit 1c8cf82900
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ $(function() {
}, {
html: 'Fill in basic information',
check: function() {
for (let name of ['profile.headline', 'profile.languages']) {
for (let name of ['profile.headline', 'languages']) {
if (!$editor.find('[name="' + name + '"]').val()) return false;
}
return true;