From a2ad2dbeb4cf730144bd305ddf2177aa4708657f Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Tue, 17 May 2022 14:34:54 -0500 Subject: [PATCH] Use null symbol --- helpers/stork/toml.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/stork/toml.js b/helpers/stork/toml.js index 2a7a8f6..7e27bf7 100644 --- a/helpers/stork/toml.js +++ b/helpers/stork/toml.js @@ -48,7 +48,7 @@ function makeDetailsFromListing ( listing ) { return [ - listing.content || 'No content', + listing.content || '∅', // Null Symbol has( listing, 'status' ) ? `status:${ listing.status }` : '', // Brownmatter matter.stringify( '', contents ),