update sumo_id regex

This commit is contained in:
Silver Kuusik 2018-09-12 14:24:04 +02:00
parent 720ede2442
commit 4d14b988ed
1 changed files with 1 additions and 1 deletions

View File

@ -204,7 +204,7 @@ window.addEventListener('load', function() {
$('.btn-robot-go').click(function() {
// Get and validate the selected robot ID
var robotId = $('#robot-id').val().trim();
if (robotId === '' || /^([a-f0-9]{8})$/.test(robotId) == false) {
if (robotId === '' || /^([a-zA-Z0-9]{8})$/.test(robotId) == false) {
$('#robot-id, #robot-label').addClass('has-error');
return;
} else {