diff --git a/src/components/JournalView/JournalDispatchers.vue b/src/components/JournalView/JournalDispatchers.vue
index 6060f47..471a705 100644
--- a/src/components/JournalView/JournalDispatchers.vue
+++ b/src/components/JournalView/JournalDispatchers.vue
@@ -96,7 +96,7 @@
diff --git a/src/views/StationsView.vue b/src/views/StationsView.vue
index e6415b8..c3959d8 100644
--- a/src/views/StationsView.vue
+++ b/src/views/StationsView.vue
@@ -53,17 +53,6 @@ export default defineComponent({
modalHidden: true,
STORAGE_KEY: 'options_saved',
inputs: inputData,
-
- regions: [
- {
- id: 'eu',
- value: 'PL1',
- },
- {
- id: 'ru',
- value: 'ENG',
- },
- ],
}),
setup() {
@@ -71,10 +60,9 @@ export default defineComponent({
const filterManager = reactive(new StationFilterManager());
const focusedStationName = '';
- const computedStations: ComputedRef = computed(() =>
- filterManager
- .getFilteredStationList(store.stationList)
- .filter((station) => !station.onlineInfo || station.onlineInfo.region == store.region.id)
+ const computedStations: ComputedRef = computed(
+ () => filterManager.getFilteredStationList(store.stationList, store.region.id)
+ // .filter((station) => !station.onlineInfo || station.onlineInfo.region == store.region.id)
);
return {
@@ -178,5 +166,4 @@ export default defineComponent({
margin-bottom: 0.5em;
}
-