mirror of
https://github.com/penpot/penpot.git
synced 2025-08-07 14:38:33 +02:00
Merge remote-tracking branch 'origin/staging' into develop
This commit is contained in:
commit
80549bda9b
4 changed files with 17 additions and 5 deletions
|
@ -93,12 +93,24 @@ More info:
|
||||||
Each commit should have:
|
Each commit should have:
|
||||||
|
|
||||||
- A concise subject using imperative mood.
|
- A concise subject using imperative mood.
|
||||||
- The subject should have capitalized the first letter and without
|
- The subject should have capitalized the first letter, without period
|
||||||
period at the end.
|
at the end and no larger than 65 characters.
|
||||||
- A blank line between the subject line and the body.
|
- A blank line between the subject line and the body.
|
||||||
- An entry on the CHANGES.md file if applicable, referencing the
|
- An entry on the CHANGES.md file if applicable, referencing the
|
||||||
github or taiga issue/user-story using the these same rules.
|
github or taiga issue/user-story using the these same rules.
|
||||||
|
|
||||||
|
Examples of good commit messags:
|
||||||
|
|
||||||
|
- :bug: Fix unexpected error on launching modal
|
||||||
|
- :bug: Set proper error message on generic error
|
||||||
|
- :sparkles: Enable new modal for profile
|
||||||
|
- :zap: Improve performance of dashboard navigation
|
||||||
|
- :wrench: Update default backend configuration
|
||||||
|
- :books: Add more documentation for authentication process
|
||||||
|
- :ambulance: Fix critical bug on user registration process
|
||||||
|
- :tada: Add new approach for user registration
|
||||||
|
|
||||||
|
|
||||||
## Code of conduct ##
|
## Code of conduct ##
|
||||||
|
|
||||||
As contributors and maintainers of this project, we pledge to respect
|
As contributors and maintainers of this project, we pledge to respect
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
|
|
||||||
shapes (if (seq selected)
|
shapes (if (seq selected)
|
||||||
(wsh/lookup-shapes state selected)
|
(wsh/lookup-shapes state selected)
|
||||||
(wsh/filter-shapes state #(pos? (count (:exports %)))))
|
(reverse (wsh/filter-shapes state #(pos? (count (:exports %))))))
|
||||||
|
|
||||||
exports (for [shape shapes
|
exports (for [shape shapes
|
||||||
export (:exports shape)]
|
export (:exports shape)]
|
||||||
|
|
|
@ -186,7 +186,7 @@
|
||||||
(mf/use-callback
|
(mf/use-callback
|
||||||
(mf/deps file frames)
|
(mf/deps file frames)
|
||||||
(fn [_]
|
(fn [_]
|
||||||
(st/emit! (de/show-workspace-export-frames-dialog frames))))
|
(st/emit! (de/show-workspace-export-frames-dialog (reverse frames)))))
|
||||||
|
|
||||||
on-item-hover
|
on-item-hover
|
||||||
(mf/use-callback
|
(mf/use-callback
|
||||||
|
|
|
@ -49,7 +49,7 @@
|
||||||
(fn [event]
|
(fn [event]
|
||||||
(dom/prevent-default event)
|
(dom/prevent-default event)
|
||||||
(if (= :multiple type)
|
(if (= :multiple type)
|
||||||
(st/emit! (de/show-workspace-export-dialog {:selected ids}))
|
(st/emit! (de/show-workspace-export-dialog {:selected (reverse ids)}))
|
||||||
|
|
||||||
;; In other all cases we only allowed to have a single
|
;; In other all cases we only allowed to have a single
|
||||||
;; shape-id because multiple shape-ids are handled
|
;; shape-id because multiple shape-ids are handled
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue