Fix alignment of new RTSP stream URL input field

Remove style that was indenting the input field, this isn't needed anymore since we aren't trying to align with the label
This commit is contained in:
jaredb7
2023-04-07 08:59:58 +10:00
parent 7972452d61
commit bb1ac2dd70
+1 -1
View File
@@ -298,7 +298,7 @@ if (file_exists('./scripts/thisrun.txt')) {
//Fix up the new element so it's visible, set the style so it's sligned correctly
new_url_input_template.setAttribute("id", "rtsp_stream_url_new_" + number_of_new_rtsp_urls_added);
new_url_input_template.setAttribute("name", "rtsp_stream_new_" + number_of_new_rtsp_urls_added);
new_url_input_template.setAttribute("style", "margin-left: 107px");
new_url_input_template.removeAttribute("style");
//Insert the new input field before the button to add new urls
var newrtspstream_button = document.getElementById('newrtspstream_button_container');