From 6ba356f7184c7ae93902a39c106b9de27d099142 Mon Sep 17 00:00:00 2001 From: Anastasios Gogos <13665570+tgogos@users.noreply.github.com> Date: Mon, 27 Jun 2022 16:34:30 +0300 Subject: [PATCH 1/2] add margin bottom to buttons --- backend/app/app/static/js/map.js | 2 +- backend/app/app/ui/map.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/app/app/static/js/map.js b/backend/app/app/static/js/map.js index b590db22..dabc71a4 100644 --- a/backend/app/app/static/js/map.js +++ b/backend/app/app/static/js/map.js @@ -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 = ` ` +var ue_btn_tpl = ` ` var looping_UEs = 0; diff --git a/backend/app/app/ui/map.html b/backend/app/app/ui/map.html index 49b9159b..55aff8d4 100644 --- a/backend/app/app/ui/map.html +++ b/backend/app/app/ui/map.html @@ -180,7 +180,7 @@
- +
From 973df6f83ab32e462d19c52932866d6741d4d938 Mon Sep 17 00:00:00 2001 From: Anastasios Gogos <13665570+tgogos@users.noreply.github.com> Date: Mon, 27 Jun 2022 16:36:54 +0300 Subject: [PATCH 2/2] increase GET limit from 100 to 1000 --- backend/app/app/static/js/dashboard-cells.js | 2 +- backend/app/app/static/js/dashboard-gnbs.js | 2 +- backend/app/app/static/js/dashboard-paths.js | 2 +- backend/app/app/static/js/dashboard-ues.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/backend/app/app/static/js/dashboard-cells.js b/backend/app/app/static/js/dashboard-cells.js index 645aa349..235fe794 100644 --- a/backend/app/app/static/js/dashboard-cells.js +++ b/backend/app/app/static/js/dashboard-cells.js @@ -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', diff --git a/backend/app/app/static/js/dashboard-gnbs.js b/backend/app/app/static/js/dashboard-gnbs.js index 7ebdfaaa..5e3b2a5d 100644 --- a/backend/app/app/static/js/dashboard-gnbs.js +++ b/backend/app/app/static/js/dashboard-gnbs.js @@ -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', diff --git a/backend/app/app/static/js/dashboard-paths.js b/backend/app/app/static/js/dashboard-paths.js index bc62c178..65e7a9cd 100644 --- a/backend/app/app/static/js/dashboard-paths.js +++ b/backend/app/app/static/js/dashboard-paths.js @@ -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', diff --git a/backend/app/app/static/js/dashboard-ues.js b/backend/app/app/static/js/dashboard-ues.js index 3feee311..05359eeb 100644 --- a/backend/app/app/static/js/dashboard-ues.js +++ b/backend/app/app/static/js/dashboard-ues.js @@ -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',