From 703859ac75c8f78591951f3d4487495b5b1f8208 Mon Sep 17 00:00:00 2001 From: "alonso.torres" Date: Fri, 8 Oct 2021 15:00:22 +0200 Subject: [PATCH] :sparkles: Change order of the teams menu so it's in the joined time order --- CHANGES.md | 9 +++++---- backend/src/app/rpc/queries/teams.clj | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index f238908cb8..63c4b1e2b7 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,10 +3,15 @@ ## :rocket: Next ### :boom: Breaking changes + +- Some stroke-caps can change behaviour +- Text display bug fix could potentialy make some texts jump a line + ### :sparkles: New features - Add boolean shapes: intersections, unions, difference and exclusions. - 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 @@ -32,10 +37,6 @@ - Fix shift+wheel to horizontal scrolling in MacOS [#1217](https://github.com/penpot/penpot/issues/1217) ### :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!) diff --git a/backend/src/app/rpc/queries/teams.clj b/backend/src/app/rpc/queries/teams.clj index 7bad8ba598..0404d300d7 100644 --- a/backend/src/app/rpc/queries/teams.clj +++ b/backend/src/app/rpc/queries/teams.clj @@ -58,7 +58,7 @@ join team as t on (t.id = tp.team_id) where t.deleted_at is null and tp.profile_id = ? - order by t.created_at asc") + order by tp.created_at asc") (defn retrieve-teams [conn profile-id]