diff options
Diffstat (limited to 'diplomacy/web/src/gui/components')
-rw-r--r-- | diplomacy/web/src/gui/components/power_orders_actions_bar.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/diplomacy/web/src/gui/components/power_orders_actions_bar.js b/diplomacy/web/src/gui/components/power_orders_actions_bar.js index 2e33a6e..3ffef63 100644 --- a/diplomacy/web/src/gui/components/power_orders_actions_bar.js +++ b/diplomacy/web/src/gui/components/power_orders_actions_bar.js @@ -11,7 +11,7 @@ export class PowerOrdersActionBar extends React.Component { <Button title={'reset'} onClick={this.props.onReset}/> <Button title={'delete all'} onClick={this.props.onDeleteAll}/> <Button color={'primary'} title={'update'} onClick={this.props.onUpdate}/> - {(!this.props.onProcess && + {(this.props.onProcess && <Button color={'danger'} title={'process game'} onClick={this.props.onProcess}/>) || ''} </Bar> ); |