mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-01 21:42:44 +00:00
title as snippet.name
This commit is contained in:
@@ -228,7 +228,7 @@ const SnippetGroup = createClass({
|
|||||||
return _.map(snippets, (snippet)=>{
|
return _.map(snippets, (snippet)=>{
|
||||||
return <div className='snippet' key={snippet.name} onClick={(e)=>this.handleSnippetClick(e, snippet)}>
|
return <div className='snippet' key={snippet.name} onClick={(e)=>this.handleSnippetClick(e, snippet)}>
|
||||||
<i className={snippet.icon} />
|
<i className={snippet.icon} />
|
||||||
<span className='name'>{snippet.name}</span>
|
<span className='name'title={snippet.name}>{snippet.name}</span>
|
||||||
{snippet.experimental && <span className='beta'>beta</span>}
|
{snippet.experimental && <span className='beta'>beta</span>}
|
||||||
{snippet.subsnippets && <>
|
{snippet.subsnippets && <>
|
||||||
<i className='fas fa-caret-right'></i>
|
<i className='fas fa-caret-right'></i>
|
||||||
|
|||||||
@@ -340,11 +340,6 @@ module.exports = [
|
|||||||
icon : 'MrEavesRemake',
|
icon : 'MrEavesRemake',
|
||||||
gen : dedent`{{MrEavesRemake Dummy Text}}`
|
gen : dedent`{{MrEavesRemake Dummy Text}}`
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name : 'Mr Eaves Remake',
|
|
||||||
icon : 'MrEavesRemake',
|
|
||||||
gen : dedent`{{MrEavesRemake Dummy Text}}`
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: 'Solbera Imitation Remake',
|
name: 'Solbera Imitation Remake',
|
||||||
icon: 'SolberaImitationRemake',
|
icon: 'SolberaImitationRemake',
|
||||||
|
|||||||
Reference in New Issue
Block a user