mirror of
https://github.com/bckelley/cgm-remote-monitor.git
synced 2026-08-24 03:14:12 -05:00
typo
This commit is contained in:
@@ -603,7 +603,7 @@ function init(client, $) {
|
||||
|
||||
function fillForm(event) {
|
||||
$('#bc_filter_category').empty().append('<option value="">' + translate('(none)') + '</option>');
|
||||
Option.keys(categories).forEach( function eachCategory(s) {
|
||||
Object.keys(categories).forEach( function eachCategory(s) {
|
||||
$('#bc_filter_category').append('<option value="' + s +'">' + s + '</option>');
|
||||
});
|
||||
filter.category = '';
|
||||
@@ -623,7 +623,7 @@ function init(client, $) {
|
||||
filter.subcategory = '';
|
||||
$('#bc_filter_subcategory').empty().append('<option value="">' + translate('(none)') + '</option>');
|
||||
if (filter.category !== '') {
|
||||
Options.keys(categories[filter.category]).forEach( function eachSubcategory(s) {
|
||||
Object.keys(categories[filter.category]).forEach( function eachSubcategory(s) {
|
||||
$('#bc_filter_subcategory').append('<option value="' + s +'">' + s + '</option>');
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user