0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-14 17:12:40 +00:00

Add tooltip and classNames to UserPage and BrewItem

This commit is contained in:
G.Ambatte
2021-08-07 14:41:11 +12:00
parent 6f6c4acf7e
commit fd8020dcc4
2 changed files with 11 additions and 4 deletions

View File

@@ -140,11 +140,11 @@ const UserPage = createClass({
<div className='content V3'>
<div className='phb'>
{this.renderSortOptions()}
<div>
<div className='published'>
<h1>{this.getUsernameWithS()} brews</h1>
{this.renderBrews(brews.published)}
</div>
<div>
<div className='unpublished'>
<h1>{this.getUsernameWithS()} unpublished brews</h1>
{this.renderBrews(brews.private)}
</div>