zmiana położenia przycisku RJ ONLINE w dzienniku

This commit is contained in:
2024-03-29 23:23:14 +01:00
parent c12a6cbacd
commit b17bd19433
@@ -34,15 +34,6 @@
<strong v-else> <strong v-else>
{{ timetable.driverName }} {{ timetable.driverName }}
</strong> </strong>
<button
v-if="timetable.terminated == false"
class="btn--image btn--action btn-timetable"
@click.stop="showTimetable(timetable, $event.currentTarget)"
>
<img src="/images/icon-train.svg" alt="" />
{{ $t('journal.timetable-online-button') }}
</button>
</span> </span>
<span class="general-time"> <span class="general-time">
@@ -70,6 +61,15 @@
: `${$t('journal.timetable-abandoned')} ${localeTime(timetable.endDate, $i18n.locale)}` : `${$t('journal.timetable-abandoned')} ${localeTime(timetable.endDate, $i18n.locale)}`
}} }}
</b> </b>
<button
v-if="timetable.terminated == false"
class="btn--image btn--action btn-timetable"
@click.stop="showTimetable(timetable, $event.currentTarget)"
>
<img src="/images/icon-train.svg" alt="" />
{{ $t('journal.timetable-online-button') }}
</button>
</span> </span>
</div> </div>
</template> </template>