From 9f5902e07ecfcdc7b1452c41eea379bd1dfbfba9 Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Tue, 17 May 2022 16:07:55 -0500 Subject: [PATCH] Use underscore for status --- 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 92eda38..3cc756e 100644 --- a/helpers/stork/toml.js +++ b/helpers/stork/toml.js @@ -49,7 +49,7 @@ function makeDetailsFromListing ( listing ) { return [ listing.content || '∅', // Null Symbol - has( listing, 'status' ) ? `status:${ listing.status }` : '', + has( listing, 'status' ) ? `status_${ listing.status }` : '', // Brownmatter matter.stringify( '', contents ), ].join('\r\n')