diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2025-02-18 16:23:40 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2025-03-02 08:23:22 -0400 |
commit | 90d484d4ca6525b7184e28f452349e1a3b6e759f (patch) | |
tree | 399f0e0547870c8527bc4fe3053d238f38edd844 /src/data/composite/wiki-properties/commentary.js | |
parent | 298b26c82aa7f029f4a640ee1a0a95ac5ab2c4c4 (diff) |
data, content: make commentary [] when empty
Diffstat (limited to 'src/data/composite/wiki-properties/commentary.js')
-rw-r--r-- | src/data/composite/wiki-properties/commentary.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data/composite/wiki-properties/commentary.js b/src/data/composite/wiki-properties/commentary.js index cd6b7ac4..9625278d 100644 --- a/src/data/composite/wiki-properties/commentary.js +++ b/src/data/composite/wiki-properties/commentary.js @@ -16,7 +16,7 @@ export default templateCompositeFrom({ exitWithoutDependency({ dependency: input.updateValue({validate: isCommentary}), mode: input.value('falsy'), - value: input.value(null), + value: input.value([]), }), withParsedCommentaryEntries({ |