diff --git a/index.html b/index.html
index 4be4aec..0d61606 100644
--- a/index.html
+++ b/index.html
@@ -1854,10 +1854,10 @@
var rows = {};
function render() {
function sorter(a, b) {
- if (a.Nombre < b.Nombre) {
+ if (a.Region < b.Region) {
return -1;
}
- if (a.Nombre > b.Nombre) {
+ if (a.Region > b.Region) {
return 1;
}
return 0;