0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-01 15:12:40 +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> <label>theme</label>
{!this.state.showThemeWritein?dropdown:''} {!this.state.showThemeWritein?dropdown:''}
<button className='display writeIn' onClick={this.toggleThemeWritein}> <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> </button>
{this.renderThemeWritein()} {this.renderThemeWritein()}
</div>; </div>;