0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-26 16:02:38 +00:00

Change theme button toggle to be a bit more obvious.

This commit is contained in:
David Bolack
2025-01-08 09:25:16 -06:00
parent 94a431eec8
commit 6eb938bb37

View File

@@ -265,7 +265,7 @@ const MetadataEditor = createClass({
<label>theme</label>
{!this.state.showThemeWritein?dropdown:''}
<button className='display writeIn' onClick={this.toggleThemeWritein}>
<i className={`fas fa-caret-${this.state.showThemeWritein ? 'right' : 'left'}`} />
{`${this.state.showThemeWritein ? 'Theme List' : 'Use Brew Theme' }`}
</button>
{this.renderThemeWritein()}
</div>;