fix: SlashPreview i18n + Note type isPublic/publicSlug
All checks were successful
CI / Lint, Unit Tests & Build (push) Successful in 5m15s
CI / Deploy production (on server) (push) Successful in 22s

- SlashPreview: 30+ chaînes FR → t() avec fallback
- SlashPreview accepte t en prop
- Note type: ajout isPublic/publicSlug/publishedAt (élimine les erreurs TS)
- NoteType: richtext déjà présent (confirmé)
This commit is contained in:
Antigravity
2026-06-20 16:41:53 +00:00
parent 35c79ffd1c
commit 128aa842f1
2 changed files with 26 additions and 22 deletions

View File

@@ -86,6 +86,9 @@ export interface Note {
sourceUrl?: string | null;
matchType?: 'exact' | 'related' | null;
searchScore?: number | null;
isPublic?: boolean;
publicSlug?: string | null;
publishedAt?: Date | null;
}
export interface NoteHistoryEntry {