Skip to content

Commit

Permalink
refactor(eb-app-ui): update the date function in meeting-schedule list
Browse files Browse the repository at this point in the history
  • Loading branch information
emrahcom committed Apr 4, 2024
1 parent bacdf0a commit 426c82b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts">
import { page } from "$app/stores";
import { toLocaleTime } from "$lib/common";
import { toLocaleDatetime } from "$lib/common";
import type { MeetingSchedule } from "$lib/types";
import Add from "$lib/components/common/link-add.svelte";
import Del from "$lib/components/common/link-del.svelte";
Expand All @@ -21,7 +21,7 @@
<div class="card h-100 {p.enabled ? '' : 'border-danger'}">
<div class="card-body text-center">
<h5 class="card-title text-muted">
{toLocaleTime(p.schedule_attr.started_at)}
{toLocaleDatetime(p.schedule_attr.started_at)}
</h5>

<p class="card-text text-muted">
Expand Down

0 comments on commit 426c82b

Please sign in to comment.