Use underscore for status

This commit is contained in:
Sam Carlton 2022-05-17 16:07:55 -05:00
parent 9bc45ffc5a
commit 9f5902e07e

View file

@ -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')