Skip to content

Commit

Permalink
fix menu cursor
Browse files Browse the repository at this point in the history
  • Loading branch information
shybees committed Mar 15, 2022
1 parent 7722df8 commit 5920455
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vector",
"version": "1.0.0",
"version": "1.0.1",
"description": "a ebook reader which based on electron-react-boilerplate",
"scripts": {
"build": "concurrently \"yarn build:main\" \"yarn build:renderer\"",
Expand Down
2 changes: 1 addition & 1 deletion release/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vector",
"version": "1.0.0",
"version": "1.0.1",
"description": "a ebook reader which based on electron-react-boilerplate",
"main": "./dist/main/main.js",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/features/epub/EpubMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const EpubMenu = (props: any) => {
{
tocs? tocs.map((toc) => {
return <li key={toc.id} className="p-2 m-2">
<a onClick={showNewPage} id={toc.href} className="cursor-pointe
<a onClick={showNewPage} id={toc.href} className="cursor-pointer
align-middle">{toc.label}</a>
</li>
}): ''
Expand Down

0 comments on commit 5920455

Please sign in to comment.