Skip to content

Commit

Permalink
Merge branch 'medianetlab:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
tgogos authored Jun 27, 2022
2 parents 489208f + cb25ef6 commit 9880052
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion backend/app/app/static/js/dashboard-cells.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ var cells_datatable = null;
//
function api_get_Cells( callback ) {

var url = app.api_url + '/Cells?skip=0&limit=100';
var url = app.api_url + '/Cells?skip=0&limit=1000';

$.ajax({
type: 'GET',
Expand Down
2 changes: 1 addition & 1 deletion backend/app/app/static/js/dashboard-gnbs.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ var gNBs_datatable = null;
//
function api_get_gNBs( callback ) {

var url = app.api_url + '/gNBs?skip=0&limit=100';
var url = app.api_url + '/gNBs?skip=0&limit=1000';

$.ajax({
type: 'GET',
Expand Down
2 changes: 1 addition & 1 deletion backend/app/app/static/js/dashboard-paths.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ var paths_datatable = null;
//
function api_get_paths( callback ) {

var url = app.api_url + '/paths?skip=0&limit=100';
var url = app.api_url + '/paths?skip=0&limit=1000';

$.ajax({
type: 'GET',
Expand Down
2 changes: 1 addition & 1 deletion backend/app/app/static/js/dashboard-ues.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ var ues_datatable = null;
//
function api_get_UEs( callback ) {

var url = app.api_url + '/UEs?skip=0&limit=100';
var url = app.api_url + '/UEs?skip=0&limit=1000';

$.ajax({
type: 'GET',
Expand Down
2 changes: 1 addition & 1 deletion backend/app/app/static/js/map.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ var UE_refresh_sec_default = 1000; // 1 sec
var UE_refresh_sec = -1; // when select = "off" AND disabled = true

// template for UE buttons
var ue_btn_tpl = `<button class="btn btn-success btn-sm px-4 btn-ue" type="button" id="btn-ue-{{supi}}" data-supi={{supi}} data-running=false>{{name}}</button> `
var ue_btn_tpl = `<button class="btn btn-success btn-sm px-4 mb-1 btn-ue" type="button" id="btn-ue-{{supi}}" data-supi={{supi}} data-running=false>{{name}}</button> `

var looping_UEs = 0;

Expand Down
2 changes: 1 addition & 1 deletion backend/app/app/ui/map.html
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
<!-- UE button area -->
<div class="row mt-2 mb-4">
<div class="col-12 ue-btn-area">
<button class="btn btn-success btn-sm px-4" type="button" id="btn-start-all">Start all</button>
<button class="btn btn-success btn-sm px-4 mb-1" type="button" id="btn-start-all">Start all</button>
</div>
</div>
<!-- row -->
Expand Down

0 comments on commit 9880052

Please sign in to comment.