Skip to content

Commit

Permalink
FSR-491 bug fix for ios
Browse files Browse the repository at this point in the history
  • Loading branch information
teddmason committed Nov 19, 2021
1 parent f6ab4e8 commit 53d57e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/js/pages/stations-overview.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ $(document).ready(function () {
format: {
header: (data, row, column, node) => {
if (data.indexOf('<select>') > -1) {
data = data.match(/(?<=">)(.*?)(?=<\/option>)/g)[0] || data
data = data.substring(data.indexOf('">') + 2, data.indexOf('</option>')) || data
}
return data
}
Expand Down

0 comments on commit 53d57e6

Please sign in to comment.