diff --git a/src/components/salmonrun/ExpandedSalmonRunRow.vue b/src/components/salmonrun/ExpandedSalmonRunRow.vue
index 75d5af9..f7881ed 100644
--- a/src/components/salmonrun/ExpandedSalmonRunRow.vue
+++ b/src/components/salmonrun/ExpandedSalmonRunRow.vue
@@ -8,7 +8,13 @@
- {{ $t('time.remaining', { time: formatDurationHoursFromNow(schedule.endTime) }) }}
+
+ Shift opens
+ {{ $t('time.in', { time: formatDurationHoursFromNow(schedule.startTime, true) }) }}
+
+
+ {{ $t('time.remaining', { time: formatDurationHoursFromNow(schedule.endTime) }) }}
+
import { formatDurationFromNow, formatDurationHoursFromNow } from '@/common/time';
+import { useTimeStore } from '../../stores/time.mjs';
import StageImage from '../StageImage.vue';
import SalmonRunWeapons from './SalmonRunWeapons.vue';
defineProps({
schedule: Object,
});
+
+const time = useTimeStore();
diff --git a/src/components/salmonrun/SalmonRunBox.vue b/src/components/salmonrun/SalmonRunBox.vue
index 8562804..5992c61 100644
--- a/src/components/salmonrun/SalmonRunBox.vue
+++ b/src/components/salmonrun/SalmonRunBox.vue
@@ -11,22 +11,23 @@
-
+
{{ $t('times.now') }}
-
+
-
+
{{ $t('times.future') }}
@@ -37,13 +38,31 @@