Skip to content

Commit

Permalink
missing comma in import oscar validation rules added.
Browse files Browse the repository at this point in the history
  • Loading branch information
david-i-berry committed Sep 19, 2023
1 parent 6143485 commit 549987d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/components/ImportOSCAR.vue
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
validElevation: value => value && ! isNaN(value) ? true : 'Invalid elevation',
validBarometerHeight: value => value && ! isNaN(value) ? true : 'Invalid barometer height',
validName: value => value && value.length > 3 ? true : 'Name must be more than 3 characters',
token: value => value && value.length > 0 ? true: 'Please enter the authorization token'.
token: value => value && value.length > 0 ? true: 'Please enter the authorization token',
topic: value => value.length > 0 ? true : 'Select at least one topic'
});
Expand Down

0 comments on commit 549987d

Please sign in to comment.