bump version

This commit is contained in:
Mattijs Vanhaverbeke
2020-07-20 15:49:06 +02:00
parent 5f4f97c360
commit 2edd597871
7 changed files with 22 additions and 447 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ class TopologyViewsConfig(PluginConfig):
name = 'netbox_topology_views'
verbose_name = 'Topology views'
description = 'An plugin to render toplogoy maps'
version = '0.4.8'
version = '0.4.9'
author = 'Mattijs Vanhaverbeke'
author_email = 'author@example.com'
base_url = 'topology-views'
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+1 -4
View File
@@ -28,9 +28,6 @@ function startRender() {
});
graph.fit();
canvas = document.getElementById('fullvisgraph').getElementsByTagName('canvas')[0];
},
error: function (error_result) {
},
}
});
}
+3 -3
View File
@@ -85,10 +85,10 @@ function startLoadSearchBar() {
return base_url;
}
else {
selected_regions.forEach(element => {
var tmp = "&region_id=" + element;
for (var i = 0; i < selected_regions.length; i++) {
var tmp = "&region_id=" + selected_regions[i];
base_url = base_url + tmp;
});
}
return base_url;
}