mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Move status to it’s own line
This commit is contained in:
parent
81f9e73415
commit
30140ff4d1
1 changed files with 2 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ function makeDetailsFromListing ( listing ) {
|
||||||
text: isNonEmptyString,
|
text: isNonEmptyString,
|
||||||
content: isNonEmptyString,
|
content: isNonEmptyString,
|
||||||
description: isNonEmptyString,
|
description: isNonEmptyString,
|
||||||
status: isNonEmptyString,
|
// status: isNonEmptyString,
|
||||||
aliases: isNonEmptyArray,
|
aliases: isNonEmptyArray,
|
||||||
tags: isNonEmptyArray,
|
tags: isNonEmptyArray,
|
||||||
}
|
}
|
||||||
|
|
@ -49,6 +49,7 @@ function makeDetailsFromListing ( listing ) {
|
||||||
|
|
||||||
return [
|
return [
|
||||||
listing.content || 'No content',
|
listing.content || 'No content',
|
||||||
|
has( listing, 'status' ) ? `status:${ listing.status }` : '',
|
||||||
// Brownmatter
|
// Brownmatter
|
||||||
matter.stringify( '', contents ),
|
matter.stringify( '', contents ),
|
||||||
].join('')
|
].join('')
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue