0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-13 16:21:57 -05:00

Merge pull request #2883 from penpot/palba-fix-components-groups-names-in-list-mode

🐛 Fix components groups items show the component name in list mode
This commit is contained in:
Alejandro 2023-02-01 10:41:33 +01:00 committed by GitHub
commit 3dfd87eee1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 8 deletions

View file

@ -1,5 +1,11 @@
# CHANGELOG
## 1.17.1
### :bug: Bugs fixed
- Fix components groups items show the component name in list mode [Taiga #4770](https://tree.taiga.io/project/penpot/issue/4770)
## 1.17.0
### :sparkles: New features

View file

@ -446,10 +446,7 @@
:editing renaming?)
:value (cph/merge-path-item (:path component) (:name component))
:tooltip (cph/merge-path-item (:path component) (:name component))
:display-value (if listing-thumbs?
(:name component)
(cph/compact-name (:path component)
(:name component)))
:display-value (:name component)
:editing? renaming?
:disable-dbl-click? true
:on-change do-rename
@ -831,10 +828,7 @@
:editing renaming?)
:value (cph/merge-path-item (:path object) (:name object))
:tooltip (cph/merge-path-item (:path object) (:name object))
:display-value (if listing-thumbs?
(:name object)
(cph/compact-name (:path object)
(:name object)))
:display-value (:name object)
:editing? renaming?
:disable-dbl-click? true
:on-change do-rename