mirror of
https://github.com/LibreQoE/LibreQoS.git
synced 2025-02-25 18:55:32 -06:00
Fix case on flag path
This commit is contained in:
parent
7b14dc1276
commit
eebc6372e4
@ -148,7 +148,7 @@ function renderAsn(asn, data) {
|
||||
}
|
||||
|
||||
// Build the heading
|
||||
heading.innerHTML = "<img alt='" + targetCountry.iso_code + "' src='flags/" + targetCountry.iso_code + ".svg' height=32 width=32 />" + targetCountry.name;
|
||||
heading.innerHTML = "<img alt='" + targetCountry.iso_code + "' src='flags/" + targetCountry.iso_code.toLowerCase() + ".svg' height=32 width=32 />" + targetCountry.name;
|
||||
}
|
||||
|
||||
let target = document.getElementById("asnDetails");
|
||||
|
Loading…
Reference in New Issue
Block a user