Added note edit flags

This commit is contained in:
Mitchell McCaffrey
2020-11-05 16:21:52 +11:00
parent 8873e59205
commit 6fedcc171d
5 changed files with 27 additions and 3 deletions

View File

@@ -233,6 +233,16 @@ function MapSettings({
/>
Tokens
</Label>
<Label>
<Checkbox
checked={
!mapStateEmpty && mapState.editFlags.includes("notes")
}
disabled={mapStateEmpty}
onChange={(e) => handleFlagChange(e, "notes")}
/>
Notes
</Label>
</Flex>
</Box>
</>