mirror of
https://github.com/penpot/penpot.git
synced 2025-03-19 03:01:27 -05:00
Merge pull request #5134 from penpot/alotor-hotfix-2.3
Alotor hotfix 2.3
This commit is contained in:
commit
8373654f80
3 changed files with 10 additions and 2 deletions
|
@ -1,5 +1,12 @@
|
|||
# CHANGELOG
|
||||
|
||||
## 2.2.1
|
||||
|
||||
### :bug: Bugs fixed
|
||||
|
||||
- Fix problem with Ctrl+F shortcut on the dashboard [Taiga #8876](https://tree.taiga.io/project/penpot/issue/8876)
|
||||
- Fix visual problem with the font-size dropdown in assets [Taiga #8872](https://tree.taiga.io/project/penpot/issue/8872)
|
||||
|
||||
## 2.2.0
|
||||
|
||||
### :rocket: Epics and highlights
|
||||
|
|
|
@ -19,7 +19,8 @@
|
|||
|
||||
(mf/defc search-page
|
||||
[{:keys [team search-term] :as props}]
|
||||
(let [result (mf/deref refs/dashboard-search-result)
|
||||
(let [search-term (or search-term "")
|
||||
result (mf/deref refs/dashboard-search-result)
|
||||
[rowref limit] (hooks/use-dynamic-grid-item-width)]
|
||||
|
||||
(mf/use-effect
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
height: 100%;
|
||||
grid-auto-rows: max-content;
|
||||
// TODO: ugly hack :( Fix this! we shouldn't be hardcoding this height
|
||||
max-height: calc(100vh - $s-80);
|
||||
height: calc(100vh - $s-92);
|
||||
scrollbar-gutter: stable;
|
||||
overflow-y: auto;
|
||||
padding-top: $s-8;
|
||||
|
|
Loading…
Add table
Reference in a new issue