Skip to content

Commit

Permalink
Merge pull request #404 from noi-techpark/WeatherRealtimeSplitColumns
Browse files Browse the repository at this point in the history
split GPS column into Longitude and Latitude columns
  • Loading branch information
gappc authored Jul 10, 2023
2 parents e8c90fc + 2ccddc8 commit ebb0366
Showing 1 changed file with 11 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,19 @@ export const weatherRealTimeListView: ListViewConfig = {
},
},
{
title: 'GPS Data',
component: CellComponent.GpsPointsCell,
title: 'Latitude',
component: CellComponent.StringCell,
class: 'w-48',
fields: {
text: 'latitude',
},
},
{
title: 'Longitude',
component: CellComponent.StringCell,
class: 'w-48',
fields: {
latitude: 'latitude',
longitude: 'longitude',
text: 'longitude',
},
},
{
Expand Down

0 comments on commit ebb0366

Please sign in to comment.