mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-08 13:53:08 +03:00
fix: #25
This commit is contained in:
parent
63c81be804
commit
dc2355ae3d
|
@ -127,7 +127,7 @@ export default class LogMonitor {
|
||||||
<div style={{float: 'left'}}>
|
<div style={{float: 'left'}}>
|
||||||
{computedStates.length > 1 &&
|
{computedStates.length > 1 &&
|
||||||
<button onClick={::this.handleRollback} style={{
|
<button onClick={::this.handleRollback} style={{
|
||||||
cursor: 'hand',
|
cursor: 'pointer',
|
||||||
padding: '5px 7px',
|
padding: '5px 7px',
|
||||||
border: '1px solid #eee',
|
border: '1px solid #eee',
|
||||||
display: 'inline-block'
|
display: 'inline-block'
|
||||||
|
@ -137,7 +137,7 @@ export default class LogMonitor {
|
||||||
}
|
}
|
||||||
{Object.keys(skippedActions).some(key => skippedActions[key]) &&
|
{Object.keys(skippedActions).some(key => skippedActions[key]) &&
|
||||||
<button onClick={::this.handleSweep} style={{
|
<button onClick={::this.handleSweep} style={{
|
||||||
cursor: 'hand',
|
cursor: 'pointer',
|
||||||
padding: '5px 7px',
|
padding: '5px 7px',
|
||||||
border: '1px solid #eee',
|
border: '1px solid #eee',
|
||||||
display: 'inline-block'
|
display: 'inline-block'
|
||||||
|
@ -147,7 +147,7 @@ export default class LogMonitor {
|
||||||
}
|
}
|
||||||
{computedStates.length > 1 &&
|
{computedStates.length > 1 &&
|
||||||
<button onClick={::this.handleCommit} style={{
|
<button onClick={::this.handleCommit} style={{
|
||||||
cursor: 'hand',
|
cursor: 'pointer',
|
||||||
padding: '5px 7px',
|
padding: '5px 7px',
|
||||||
border: '1px solid #eee',
|
border: '1px solid #eee',
|
||||||
display: 'inline-block'
|
display: 'inline-block'
|
||||||
|
@ -158,7 +158,7 @@ export default class LogMonitor {
|
||||||
</div>
|
</div>
|
||||||
<div style={{float: 'right'}}>
|
<div style={{float: 'right'}}>
|
||||||
<button onClick={::this.handleReset} style={{
|
<button onClick={::this.handleReset} style={{
|
||||||
cursor: 'hand',
|
cursor: 'pointer',
|
||||||
padding: '5px 7px',
|
padding: '5px 7px',
|
||||||
border: '1px solid #eee',
|
border: '1px solid #eee',
|
||||||
display: 'inline-block'
|
display: 'inline-block'
|
||||||
|
|
|
@ -87,7 +87,7 @@ export default class LogMonitorEntry {
|
||||||
display: 'block',
|
display: 'block',
|
||||||
paddingTop: '1em',
|
paddingTop: '1em',
|
||||||
color: `rgb(${r}, ${g}, ${b})`,
|
color: `rgb(${r}, ${g}, ${b})`,
|
||||||
cursor: (index > 0) ? 'hand' : 'default',
|
cursor: (index > 0) ? 'pointer' : 'default',
|
||||||
WebkitUserSelect: 'none'
|
WebkitUserSelect: 'none'
|
||||||
}}>
|
}}>
|
||||||
{JSON.stringify(action)}
|
{JSON.stringify(action)}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user