database structure fix
This commit is contained in:
@@ -87,7 +87,7 @@ const chart_coutries = computed(() => {
|
||||
let countries = [["Country"]];
|
||||
|
||||
for (let i=0; i < settingsStore.ccountry_list.length ; i++) {
|
||||
if (settingsStore.ccountry_list[i].online == (settingsStore.online ? 'Y' : 'N') || settingsStore.online == true)
|
||||
if (settingsStore.ccountry_list[i].offline == (settingsStore.online ? 'N' : 'Y') || settingsStore.online == true)
|
||||
countries.push([settingsStore.ccountry_list[i].name]);
|
||||
}
|
||||
return countries;
|
||||
|
||||
Reference in New Issue
Block a user