diff --git a/assets/js/sections/stationsetup.js b/assets/js/sections/stationsetup.js index f1832be4a..26482ac7b 100644 --- a/assets/js/sections/stationsetup.js +++ b/assets/js/sections/stationsetup.js @@ -548,6 +548,13 @@ function unLinkLocations(containerid, locationid) { success: function (data) { jdata=JSON.parse(data); if (jdata.success == 1) { + let row = $('#locationid_'+locationid); + let cells = row.find('td'); + var items = []; + items.push( + '' + ); + $('#StationLocationSelect').append(items.join( "" )); $('#locationid_'+locationid).remove(); } else { $("#flashdata").data(jdata.flashdata);