0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-30 21:52:43 +00:00

Move onClick from the lock icon to the whole button

This commit is contained in:
Trevor Buckner
2024-09-09 23:29:10 -04:00
parent 707b90e445
commit 51c8973a85

View File

@@ -153,8 +153,9 @@ const SplitPane = createClass({
<i className='fas fa-arrow-right' />
</div>
<div id='scrollToggleDiv' className={`arrow lock`}
style={{ left: this.state.currentDividerPos-4 }} >
<i id='scrollToggle' className={`fas fa-lock`} onClick={this.liveScrollToggle}/>
style={{ left: this.state.currentDividerPos-4 }}
onClick={this.liveScrollToggle} >
<i id='scrollToggle' className='fas fa-lock' />
</div>
</>;
}