From 75c4cd58faa4fec1bc4d942590ab668cc18804eb Mon Sep 17 00:00:00 2001 From: Sam Becker Date: Sun, 5 Oct 2025 10:30:06 -0500 Subject: [PATCH] Hide ids when editing albums --- src/album/form.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/album/form.ts b/src/album/form.ts index 6820f4af..235e11e8 100644 --- a/src/album/form.ts +++ b/src/album/form.ts @@ -10,7 +10,7 @@ export const ALBUM_FORM_META: { readOnly?: boolean hidden?: boolean }[] = [ - { key: 'id', type: 'text', readOnly: true }, + { key: 'id', type: 'text', readOnly: true, hidden: true }, { key: 'title', type: 'text', required: true }, { key: 'slug', type: 'text', required: true, readOnly: true }, { key: 'subhead', type: 'text' },