Skip to content

Commit

Permalink
Update fixed text and add REMOVAL button (NYI)
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Ambatte committed Apr 20, 2024
1 parent 4bc07ce commit b4b4fbe
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,19 @@ const LockNotification = createClass({
};
},

removeLock : function() {
alert('Not yet implented');
},

render : function(){
return <div className='lockNotification'>
<h1>BREW LOCKED</h1>
<p>This brew been locked by the Administrators. It will not be accessible by any method other than the Editor until the lock is removed.</p>
<hr />
<p><strong>LOCK MESSAGE:</strong></p>
<p>{this.props.message || 'Unable to retrieve Lock Message'}</p>
<button onClick={()=>{this.props.disableLock();}}>CLICK TO UNLOCK</button>
<button onClick={()=>{this.props.disableLock();}}>CONTINUE TO EDITOR</button>
<button onClick={this.removeLock}>REQUEST LOCK REMOVAL</button>
</div>;
}
});
Expand Down

0 comments on commit b4b4fbe

Please sign in to comment.