mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-24 22:52:40 +00:00
Change backticks to <pre> literals.
This commit is contained in:
@@ -89,7 +89,7 @@ const errorIndex = (props)=>{
|
||||
|
||||
:
|
||||
|
||||
**Brew Title:** \`${props.brew.brewTitle || 'Unable to show title'}\`
|
||||
**Brew Title:** <pre>${props.brew.brewTitle || 'Unable to show title'}</pre>
|
||||
|
||||
**Current Authors:** ${props.brew.authors?.map((author)=>{return `[${author}](/user/${author})`;}).join(', ') || 'Unable to list authors'}
|
||||
|
||||
@@ -104,7 +104,7 @@ const errorIndex = (props)=>{
|
||||
|
||||
:
|
||||
|
||||
**Brew Title:** \`${props.brew.brewTitle || 'Unable to show title'}\`
|
||||
**Brew Title:** <pre>${props.brew.brewTitle || 'Unable to show title'}</pre>
|
||||
|
||||
**Current Authors:** ${props.brew.authors?.map((author)=>{return `[${author}](/user/${author})`;}).join(', ') || 'Unable to list authors'}
|
||||
|
||||
@@ -181,7 +181,7 @@ const errorIndex = (props)=>{
|
||||
|
||||
**Brew ID:** ${props.brew.brewId}
|
||||
|
||||
**Brew Title:** \`${props.brew.brewTitle}\``,
|
||||
**Brew Title:** <pre>${props.brew.brewTitle}</pre>`,
|
||||
|
||||
// ####### Admin page error #######
|
||||
'52' : dedent`
|
||||
|
||||
Reference in New Issue
Block a user