fix:#17 linter error

This commit is contained in:
survellow
2024-08-15 13:21:07 +02:00
parent b87af14224
commit 7825cae8aa

View File

@ -214,7 +214,7 @@ watch(mobilePage, () => {
<p><b>{{ $t("calendarViewer.start") }}:</b> {{ clickedEvent.start ? $d(clickedEvent.start, "long") : ""}}</p>
<p><b>{{ $t("calendarViewer.end") }}:</b> {{ clickedEvent.end ? $d(clickedEvent.end, "long") : "" }}</p>
<p><b>{{ $t("calendarViewer.notes") }}:</b></p>
<p v-for="note in clickedEvent.notes.split('\n')" class="note-line">{{ note }}</p>
<p v-for="note in clickedEvent.notes.split('\n')" class="note-line" :key="note">{{ note }}</p>
</div>
</OverlayPanel>
</template>