Swap the position of the SAVE and CLEAR buttons. Change CLEAR to CANCEL.

pull/1575/head
Rick Carlino 2019-11-15 12:34:48 -06:00
parent 7f00a1fe6e
commit 5b809926ad
1 changed files with 3 additions and 3 deletions

View File

@ -72,12 +72,12 @@ export class PlantGrid extends React.Component<PlantGridProps, PlantGridState> {
</div>;
case "dirty":
return <div>
<a className={"clear-button"} onClick={this.revertPreview}>
Cancel
</a>
<a className={"clear-button"} onClick={this.saveGrid}>
Save
</a>
<a className={"clear-button"} onClick={this.revertPreview}>
Clear
</a>
</div>;
}
}