diff --git a/databrowser/src/config/tourism/accommodation/accommodation.listView.ts b/databrowser/src/config/tourism/accommodation/accommodation.listView.ts index 5103aa38..451ec380 100644 --- a/databrowser/src/config/tourism/accommodation/accommodation.listView.ts +++ b/databrowser/src/config/tourism/accommodation/accommodation.listView.ts @@ -8,7 +8,7 @@ import { imageTableCell, languageTableCell, lastChangesTableCell, - //locationTableCells, + pushDataTableCell, publishedOnTableCell, sourceTableCell, } from '../../builder/tourism'; @@ -61,5 +61,6 @@ export const accommodationListView: ListViewConfig = { }, }, publishedOnTableCell(), + pushDataTableCell(), ], }; diff --git a/databrowser/src/config/tourism/article/article.listView.ts b/databrowser/src/config/tourism/article/article.listView.ts index 4536a1d3..f3fcd514 100644 --- a/databrowser/src/config/tourism/article/article.listView.ts +++ b/databrowser/src/config/tourism/article/article.listView.ts @@ -11,6 +11,7 @@ import { sourceTableCell, titleTableCell, publishedOnTableCell, + pushDataTableCell, } from '../../builder/tourism'; export const articleListView: ListViewConfig = { @@ -48,5 +49,6 @@ export const articleListView: ListViewConfig = { lastChangesTableCell(), sourceTableCell(), publishedOnTableCell(), + pushDataTableCell(), ], }; diff --git a/databrowser/src/config/tourism/district/district.listView.ts b/databrowser/src/config/tourism/district/district.listView.ts index 1eef2c90..f4b24dba 100644 --- a/databrowser/src/config/tourism/district/district.listView.ts +++ b/databrowser/src/config/tourism/district/district.listView.ts @@ -10,6 +10,7 @@ import { publishedOnTableCell, sourceTableCell, titleTableCell, + pushDataTableCell, } from '../../builder/tourism'; export const districtListView: ListViewConfig = { @@ -35,5 +36,6 @@ export const districtListView: ListViewConfig = { }, }, publishedOnTableCell(), + pushDataTableCell(), ], }; diff --git a/databrowser/src/config/tourism/event/event.listView.ts b/databrowser/src/config/tourism/event/event.listView.ts index 2bcaec2b..81dc9258 100644 --- a/databrowser/src/config/tourism/event/event.listView.ts +++ b/databrowser/src/config/tourism/event/event.listView.ts @@ -9,6 +9,7 @@ import { languageTableCell, lastChangesTableCell, publishedOnTableCell, + pushDataTableCell, sourceTableCell, titleTableCell, } from '../../builder/tourism'; @@ -60,5 +61,6 @@ export const eventListView: ListViewConfig = { }, }, publishedOnTableCell(), + pushDataTableCell(), ], }; diff --git a/databrowser/src/config/tourism/eventShort/eventShort.listView.ts b/databrowser/src/config/tourism/eventShort/eventShort.listView.ts index 2f0d2831..d4f4c2e4 100644 --- a/databrowser/src/config/tourism/eventShort/eventShort.listView.ts +++ b/databrowser/src/config/tourism/eventShort/eventShort.listView.ts @@ -8,6 +8,7 @@ import { languageTableCell, lastChangesTableCell, publishedOnTableCell, + pushDataTableCell, sourceTableCell, } from '../../builder/tourism'; import { DEFAULT_DATE_TIME_FORMAT } from '../../utils'; @@ -50,5 +51,6 @@ export const eventShortListView: ListViewConfig = { lastChangesTableCell(), sourceTableCell(), publishedOnTableCell(), + pushDataTableCell(), ], }; diff --git a/databrowser/src/config/tourism/measuringPoint/measuringPoint.listView.ts b/databrowser/src/config/tourism/measuringPoint/measuringPoint.listView.ts index 18128028..09e30469 100644 --- a/databrowser/src/config/tourism/measuringPoint/measuringPoint.listView.ts +++ b/databrowser/src/config/tourism/measuringPoint/measuringPoint.listView.ts @@ -9,6 +9,8 @@ import { lastChangesTableCell, odhActiveTableCell, sourceTableCell, + publishedOnTableCell, + pushDataTableCell, } from '../../builder/tourism'; export const measuringPointListView: ListViewConfig = { @@ -57,5 +59,7 @@ export const measuringPointListView: ListViewConfig = { lastChangesTableCell(), sourceTableCell(), odhActiveTableCell(), + publishedOnTableCell(), + pushDataTableCell(), ], }; diff --git a/databrowser/src/config/tourism/metaRegion/metaRegion.listView.ts b/databrowser/src/config/tourism/metaRegion/metaRegion.listView.ts index 1db98f39..6f6c899f 100644 --- a/databrowser/src/config/tourism/metaRegion/metaRegion.listView.ts +++ b/databrowser/src/config/tourism/metaRegion/metaRegion.listView.ts @@ -8,6 +8,7 @@ import { languageTableCell, lastChangesTableCell, publishedOnTableCell, + pushDataTableCell, sourceTableCell, titleTableCell, } from '../../builder/tourism'; @@ -20,5 +21,6 @@ export const metaRegionListView: ListViewConfig = { lastChangesTableCell(), sourceTableCell(), publishedOnTableCell(), + pushDataTableCell(), ], }; diff --git a/databrowser/src/config/tourism/municipality/municipality.listView.ts b/databrowser/src/config/tourism/municipality/municipality.listView.ts index caa8b9a9..879239bb 100644 --- a/databrowser/src/config/tourism/municipality/municipality.listView.ts +++ b/databrowser/src/config/tourism/municipality/municipality.listView.ts @@ -11,6 +11,7 @@ import { publishedOnTableCell, sourceTableCell, titleTableCell, + pushDataTableCell, } from '../../builder/tourism'; export const municipalityListView: ListViewConfig = { @@ -45,5 +46,6 @@ export const municipalityListView: ListViewConfig = { }, }, publishedOnTableCell(), + pushDataTableCell(), ], }; diff --git a/databrowser/src/config/tourism/region/region.listView.ts b/databrowser/src/config/tourism/region/region.listView.ts index e4a413db..5ba0d062 100644 --- a/databrowser/src/config/tourism/region/region.listView.ts +++ b/databrowser/src/config/tourism/region/region.listView.ts @@ -10,6 +10,7 @@ import { logoTableCell, sourceTableCell, publishedOnTableCell, + pushDataTableCell, titleTableCell, } from '../../builder/tourism'; @@ -22,5 +23,6 @@ export const regionListView: ListViewConfig = { lastChangesTableCell(), sourceTableCell(), publishedOnTableCell(), + pushDataTableCell(), ], }; diff --git a/databrowser/src/config/tourism/skiArea/skiArea.listView.ts b/databrowser/src/config/tourism/skiArea/skiArea.listView.ts index 97bad6bc..9567cfd4 100644 --- a/databrowser/src/config/tourism/skiArea/skiArea.listView.ts +++ b/databrowser/src/config/tourism/skiArea/skiArea.listView.ts @@ -9,6 +9,7 @@ import { lastChangesTableCell, logoTableCell, publishedOnTableCell, + pushDataTableCell, sourceTableCell, titleTableCell, } from '../../builder/tourism'; @@ -22,5 +23,6 @@ export const skiAreaListView: ListViewConfig = { lastChangesTableCell(), sourceTableCell(), publishedOnTableCell(), + pushDataTableCell(), ], }; diff --git a/databrowser/src/config/tourism/skiRegion/skiRegion.listView.ts b/databrowser/src/config/tourism/skiRegion/skiRegion.listView.ts index 1c9492a3..8addf838 100644 --- a/databrowser/src/config/tourism/skiRegion/skiRegion.listView.ts +++ b/databrowser/src/config/tourism/skiRegion/skiRegion.listView.ts @@ -8,7 +8,8 @@ import { languageTableCell, lastChangesTableCell, logoTableCell, - odhActiveTableCell, + publishedOnTableCell, + pushDataTableCell, sourceTableCell, titleTableCell, } from '../../builder/tourism'; @@ -21,6 +22,7 @@ export const skiRegionListView: ListViewConfig = { languageTableCell(), lastChangesTableCell(), sourceTableCell(), - odhActiveTableCell(), + publishedOnTableCell(), + pushDataTableCell(), ], }; diff --git a/databrowser/src/config/tourism/tourismAssociationList/tourismAssociationList.listView.ts b/databrowser/src/config/tourism/tourismAssociationList/tourismAssociationList.listView.ts index 32e0bd6a..a63a0c3f 100644 --- a/databrowser/src/config/tourism/tourismAssociationList/tourismAssociationList.listView.ts +++ b/databrowser/src/config/tourism/tourismAssociationList/tourismAssociationList.listView.ts @@ -9,6 +9,7 @@ import { lastChangesTableCell, logoTableCell, publishedOnTableCell, + pushDataTableCell, sourceTableCell, titleTableCell, } from '../../builder/tourism'; @@ -22,5 +23,6 @@ export const tourismAssociationListListView: ListViewConfig = { lastChangesTableCell(), sourceTableCell(), publishedOnTableCell(), + pushDataTableCell(), ], }; diff --git a/databrowser/src/config/tourism/venue/venue.listView.ts b/databrowser/src/config/tourism/venue/venue.listView.ts index 30c781cc..49f47db4 100644 --- a/databrowser/src/config/tourism/venue/venue.listView.ts +++ b/databrowser/src/config/tourism/venue/venue.listView.ts @@ -11,6 +11,7 @@ import { languageTableCell, lastChangesTableCell, publishedOnTableCell, + pushDataTableCell, } from '../../builder/tourism'; export const venueListView: ListViewConfig = { @@ -43,5 +44,6 @@ export const venueListView: ListViewConfig = { }, }, publishedOnTableCell(), + pushDataTableCell(), ], }; diff --git a/databrowser/src/config/tourism/webcamInfo/webcamInfo.listView.ts b/databrowser/src/config/tourism/webcamInfo/webcamInfo.listView.ts index 39a1dd87..a668b159 100644 --- a/databrowser/src/config/tourism/webcamInfo/webcamInfo.listView.ts +++ b/databrowser/src/config/tourism/webcamInfo/webcamInfo.listView.ts @@ -8,8 +8,9 @@ import { gpsDataTableCell, imageTableCell, lastChangesTableCell, - odhActiveTableCell, sourceTableCell, + publishedOnTableCell, + pushDataTableCell, } from '../../builder/tourism'; export const webcamInfoListView: ListViewConfig = { @@ -34,6 +35,7 @@ export const webcamInfoListView: ListViewConfig = { gpsDataTableCell(), lastChangesTableCell(), sourceTableCell(), - odhActiveTableCell(), + publishedOnTableCell(), + pushDataTableCell(), ], }; diff --git a/databrowser/src/config/tourism/wineAward/wineAward.listView.ts b/databrowser/src/config/tourism/wineAward/wineAward.listView.ts index 01b38ef4..c401ad33 100644 --- a/databrowser/src/config/tourism/wineAward/wineAward.listView.ts +++ b/databrowser/src/config/tourism/wineAward/wineAward.listView.ts @@ -9,6 +9,7 @@ import { languageTableCell, lastChangesTableCell, publishedOnTableCell, + pushDataTableCell, sourceTableCell, } from '../../builder/tourism'; @@ -70,5 +71,6 @@ export const wineAwardListView: ListViewConfig = { }, }, publishedOnTableCell(), + pushDataTableCell(), ], };