We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38c9743 commit f3e4983Copy full SHA for f3e4983
1 file changed
keystatic.config.ts
@@ -25,7 +25,13 @@ export default config({
25
title: fields.slug({ name: { label: 'Title' } }),
26
description: fields.text({ label: 'Description', multiline: true }),
27
pubDate: fields.date({ label: 'Publication Date' }),
28
- repComm: fields.text({ label: 'REP COMM %', defaultValue: '0%' }),
+ updatedDate: fields.date({ label: 'Updated Date' }),
29
+ heroImage: fields.text({ label: 'Hero Image URL / Path' }),
30
+ draft: fields.checkbox({ label: 'Draft', defaultValue: false }),
31
+ tags: fields.array(fields.text({ label: 'Tag' }), {
32
+ label: 'Tags',
33
+ itemLabel: (props) => props.value,
34
+ }),
35
36
content: fields.document({
37
label: 'Content',
@@ -82,4 +88,4 @@ export default config({
82
88
},
83
89
}),
84
90
85
-});
91
+});
0 commit comments