mirror of
https://github.com/penpot/penpot.git
synced 2025-07-19 12:17:20 +02:00
✨ Change order of the teams menu so it's in the joined time order
This commit is contained in:
parent
4bf5434e8f
commit
703859ac75
2 changed files with 6 additions and 5 deletions
|
@ -3,10 +3,15 @@
|
||||||
## :rocket: Next
|
## :rocket: Next
|
||||||
|
|
||||||
### :boom: Breaking changes
|
### :boom: Breaking changes
|
||||||
|
|
||||||
|
- Some stroke-caps can change behaviour
|
||||||
|
- Text display bug fix could potentialy make some texts jump a line
|
||||||
|
|
||||||
### :sparkles: New features
|
### :sparkles: New features
|
||||||
|
|
||||||
- Add boolean shapes: intersections, unions, difference and exclusions.
|
- Add boolean shapes: intersections, unions, difference and exclusions.
|
||||||
- Add advanced prototyping [#244](https://tree.taiga.io/project/penpot/us/244).
|
- Add advanced prototyping [#244](https://tree.taiga.io/project/penpot/us/244).
|
||||||
|
- Change order of the teams menu so it's in the joined time order
|
||||||
|
|
||||||
### :bug: Bugs fixed
|
### :bug: Bugs fixed
|
||||||
|
|
||||||
|
@ -32,10 +37,6 @@
|
||||||
- Fix shift+wheel to horizontal scrolling in MacOS [#1217](https://github.com/penpot/penpot/issues/1217)
|
- Fix shift+wheel to horizontal scrolling in MacOS [#1217](https://github.com/penpot/penpot/issues/1217)
|
||||||
|
|
||||||
### :arrow_up: Deps updates
|
### :arrow_up: Deps updates
|
||||||
### :boom: Breaking changes
|
|
||||||
|
|
||||||
- Some stroke-caps can change behaviour
|
|
||||||
- Text display bug fix could potentialy make some texts jump a line
|
|
||||||
|
|
||||||
### :heart: Community contributions by (Thank you!)
|
### :heart: Community contributions by (Thank you!)
|
||||||
|
|
||||||
|
|
|
@ -58,7 +58,7 @@
|
||||||
join team as t on (t.id = tp.team_id)
|
join team as t on (t.id = tp.team_id)
|
||||||
where t.deleted_at is null
|
where t.deleted_at is null
|
||||||
and tp.profile_id = ?
|
and tp.profile_id = ?
|
||||||
order by t.created_at asc")
|
order by tp.created_at asc")
|
||||||
|
|
||||||
(defn retrieve-teams
|
(defn retrieve-teams
|
||||||
[conn profile-id]
|
[conn profile-id]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue