mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2025-12-23 22:37:53 -05:00
Fix eslint
This commit is contained in:
@@ -300,7 +300,7 @@ function parseRows(rows) {
|
||||
const tagSelect = $j('<select></select>').attr('name', queryPrefix + rowNum + '][val]').attr('id', queryPrefix + rowNum + '][val]');
|
||||
console.log(availableTags);
|
||||
console.log(Object.keys(availableTags));
|
||||
availableTags.forEach(tag => {
|
||||
availableTags.forEach((tag) => {
|
||||
tagSelect.append('<option value="' + tag.Id + '">' + escapeHTML(tag.Name) + '</option>');
|
||||
});
|
||||
const tagVal = inputTds.eq(4).children().val();
|
||||
|
||||
Reference in New Issue
Block a user