0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-09 14:21:42 -05:00

🐛 Fix dashboard scrolling using 'Page Up' and 'Page Down'

This commit is contained in:
Alejandro Alonso 2023-03-30 10:02:36 +02:00 committed by Alonso Torres
parent f1431b7b77
commit 85b3605c33
3 changed files with 3 additions and 2 deletions

View file

@ -71,6 +71,7 @@
- Fix problem with SVG and flex layout [Taiga #](https://tree.taiga.io/project/penpot/issue/5099) - Fix problem with SVG and flex layout [Taiga #](https://tree.taiga.io/project/penpot/issue/5099)
- Fix unpublish and delete shared library warning messages [Taiga #5090](https://tree.taiga.io/project/penpot/issue/5090) - Fix unpublish and delete shared library warning messages [Taiga #5090](https://tree.taiga.io/project/penpot/issue/5090)
- Fix last update project timer update after creating new file [Taiga #5096](https://tree.taiga.io/project/penpot/issue/5096) - Fix last update project timer update after creating new file [Taiga #5096](https://tree.taiga.io/project/penpot/issue/5096)
- Fix dashboard scrolling using 'Page Up' and 'Page Down' [Taiga #5081](https://tree.taiga.io/project/penpot/issue/5081)
### :heart: Community contributions by (Thank you!) ### :heart: Community contributions by (Thank you!)
- To @ondrejkonec: for contributing to the code with: - To @ondrejkonec: for contributing to the code with:

View file

@ -37,7 +37,7 @@
<body> <body>
{{>../public/images/sprites/symbol/icons.svg}} {{>../public/images/sprites/symbol/icons.svg}}
{{>../public/images/sprites/symbol/cursors.svg}} {{>../public/images/sprites/symbol/cursors.svg}}
<div id="app" tabindex="0"></div> <div id="app"></div>
<section id="modal"></section> <section id="modal"></section>
{{# manifest}} {{# manifest}}
<script src="{{& shared}}"></script> <script src="{{& shared}}"></script>

View file

@ -17,7 +17,7 @@
{{/manifest}} {{/manifest}}
</head> </head>
<body> <body>
<div id="app" tabindex="0"></div> <div id="app"></div>
{{# manifest}} {{# manifest}}
<script src="{{& shared}}"></script> <script src="{{& shared}}"></script>
<script src="{{& render}}"></script> <script src="{{& render}}"></script>