Lines 444-450
Link Here
|
444 |
if ( row.sub_location ) { |
444 |
if ( row.sub_location ) { |
445 |
nodes += '<span class="sub_location">'; |
445 |
nodes += '<span class="sub_location">'; |
446 |
let sub_location_str = av_subloc.get(row.sub_location.toString()); |
446 |
let sub_location_str = av_subloc.get(row.sub_location.toString()); |
447 |
nodes += '(%s)'.format(escape_str(sub_location_str)); |
447 |
nodes += ' (%s)'.format(escape_str(sub_location_str)); |
448 |
nodes += '</span>'; |
448 |
nodes += '</span>'; |
449 |
} |
449 |
} |
450 |
nodes += '</span>'; |
450 |
nodes += '</span>'; |
451 |
- |
|
|