0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-16 03:52:42 +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' /> <i className='fas fa-arrow-right' />
</div> </div>
<div id='scrollToggleDiv' className={`arrow lock`} <div id='scrollToggleDiv' className={`arrow lock`}
style={{ left: this.state.currentDividerPos-4 }} > style={{ left: this.state.currentDividerPos-4 }}
<i id='scrollToggle' className={`fas fa-lock`} onClick={this.liveScrollToggle}/> onClick={this.liveScrollToggle} >
<i id='scrollToggle' className='fas fa-lock' />
</div> </div>
</>; </>;
} }