Skip to content

Commit

Permalink
Allow boolean seeded values for now
Browse files Browse the repository at this point in the history
  • Loading branch information
benmerckx committed Jan 31, 2024
1 parent c0012b6 commit edf8572
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/core/EntryRecord.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {object, string} from 'cito'
import {boolean, object, string} from 'cito'
import {EntryRow} from './EntryRow.js'

export const META_KEY = '@alinea'
Expand All @@ -12,6 +12,8 @@ export const EntryMeta = object(
index = string
root? = string.optional
seeded? = string.optional
// Todo: Backwards comptability, remove at 1.0
.or(boolean)
}
)

Expand Down

0 comments on commit edf8572

Please sign in to comment.