prepare 0.9.7.1 release

This commit is contained in:
Michael Schramm 2020-09-02 11:24:44 +02:00
parent 4eab2b42b8
commit 0c20033c3e
3 changed files with 5 additions and 3 deletions

View File

@ -9,3 +9,4 @@ cache:
script:
- yarn
- yarn lint
- yarn export

View File

@ -15,7 +15,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Security
## [0.9.7] - 2020-09-02
## [0.9.7.1] - 2020-09-02
### Changed
@ -24,6 +24,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
- colors for landing page buttons
- menu selection type
### Security

View File

@ -218,9 +218,9 @@ const Structure: FunctionComponent<Props> = (props) => {
style={{ flex: 1 }}
defaultSelectedKeys={['1']}
selectedKeys={selected}
onSelect={(s): void => setSelected(s.keyPath)}
onSelect={(s): void => setSelected(s.keyPath as string[])}
openKeys={open}
onOpenChange={(open): void => setOpen(open)}
onOpenChange={(open): void => setOpen(open as string[])}
>
{buildMenu(sideMenu)}
</Menu>