Prettier for Journals
This commit is contained in:
@@ -1,25 +1,24 @@
|
||||
<script lang="ts">
|
||||
/**
|
||||
* JournalEntry_Metadata.svelte
|
||||
* Extracted 2026-01-08 to modularize the massive Journal Entry God Component.
|
||||
* Displays creation, update, and original datetime/timezone information.
|
||||
*/
|
||||
import { ae_util } from '$lib/ae_utils/ae_utils';
|
||||
import { ae_loc } from '$lib/stores/ae_stores';
|
||||
import type { ae_JournalEntry } from '$lib/types/ae_types';
|
||||
/**
|
||||
* JournalEntry_Metadata.svelte
|
||||
* Extracted 2026-01-08 to modularize the massive Journal Entry God Component.
|
||||
* Displays creation, update, and original datetime/timezone information.
|
||||
*/
|
||||
import { ae_util } from '$lib/ae_utils/ae_utils';
|
||||
import { ae_loc } from '$lib/stores/ae_stores';
|
||||
import type { ae_JournalEntry } from '$lib/types/ae_types';
|
||||
|
||||
interface Props {
|
||||
entry: ae_JournalEntry;
|
||||
}
|
||||
interface Props {
|
||||
entry: ae_JournalEntry;
|
||||
}
|
||||
|
||||
let { entry }: Props = $props();
|
||||
let { entry }: Props = $props();
|
||||
</script>
|
||||
|
||||
<section class="journal-metadata w-full space-y-4">
|
||||
<!-- System Timestamps -->
|
||||
<div
|
||||
class="flex flex-col sm:flex-row justify-between items-center gap-2 px-1 text-xs text-surface-500"
|
||||
>
|
||||
class="text-surface-500 flex flex-col items-center justify-between gap-2 px-1 text-xs sm:flex-row">
|
||||
<div class="flex gap-4">
|
||||
<span title="Creation date">
|
||||
<span class="font-semibold">Created:</span>
|
||||
|
||||
Reference in New Issue
Block a user