diff --git a/Backend/mocked-services/src/main/resources/static/js/datatransfer.js b/Backend/mocked-services/src/main/resources/static/js/datatransfer.js index ce82f5d..55eda14 100644 --- a/Backend/mocked-services/src/main/resources/static/js/datatransfer.js +++ b/Backend/mocked-services/src/main/resources/static/js/datatransfer.js @@ -269,7 +269,24 @@ function checkIfInputValid(input){ return !(input == '' || input == null || input == undefined); } +function checkIfHeaderEssential(key){ + + if( key == "Connection" || key == "Keep-Alive" || key == "Date" ){ + return true; + } + return false; + +} + function buildRowHtml(key, value){ + + if(checkIfHeaderEssential(key)){ + return '' + + '