Make "Remove network" button red
This commit is contained in:
parent
4249da4ba8
commit
56c18e3810
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ export default class NetworkForm extends Component {
|
||||||
let removeNetwork = null;
|
let removeNetwork = null;
|
||||||
if (!this.state.isNew) {
|
if (!this.state.isNew) {
|
||||||
removeNetwork = html`
|
removeNetwork = html`
|
||||||
<button type="button" onClick=${() => this.props.onRemove()}>
|
<button type="button" class="danger" onClick=${() => this.props.onRemove()}>
|
||||||
Remove network
|
Remove network
|
||||||
</button>
|
</button>
|
||||||
`;
|
`;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue