feat: journal dashboard widgets, agent polish, and edit-mode live previews
Journal dashboard widgets and quick-add; rich-text quick-add dialogs. Dashboard draft sync for live edit previews; assistant bubble + API tools. Journal UX: stress slider, mood grid, query cap fix.
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import { Calendar as CalendarIcon, MapPin } from "lucide-react";
|
||||
import { RichTextContent } from "@/components/rich-text";
|
||||
import type { CalendarShareData, EventShareData } from "../server/share-queries";
|
||||
import { ShareEyebrow } from "@/components/share/share-eyebrow";
|
||||
import { MiniDayCard } from "@/components/share/mini-day-card";
|
||||
@@ -92,7 +93,7 @@ export function EventSharedView({ data }: { data: EventShareData }) {
|
||||
</ShareDetailCard>
|
||||
|
||||
{data.notes && (
|
||||
<p
|
||||
<div
|
||||
className="serif"
|
||||
style={{
|
||||
fontSize: 16,
|
||||
@@ -103,11 +104,10 @@ export function EventSharedView({ data }: { data: EventShareData }) {
|
||||
padding: "18px 22px",
|
||||
margin: "14px 0 24px",
|
||||
textWrap: "pretty",
|
||||
whiteSpace: "pre-wrap",
|
||||
}}
|
||||
>
|
||||
{data.notes}
|
||||
</p>
|
||||
<RichTextContent html={data.notes} />
|
||||
</div>
|
||||
)}
|
||||
</>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user