mirror of
https://github.com/penpot/penpot.git
synced 2025-06-27 04:16:59 +02:00
🐛 Translate default team name in file menu
This commit is contained in:
parent
4d3142e826
commit
0cb816c16d
2 changed files with 9 additions and 3 deletions
|
@ -96,7 +96,7 @@
|
|||
(retrieve-all-projects conn profile-id)))
|
||||
|
||||
(def sql:all-projects
|
||||
"select p1.*, t.name as team_name
|
||||
"select p1.*, t.name as team_name, t.is_default as default_team
|
||||
from project as p1
|
||||
inner join team as t
|
||||
on t.id = p1.team_id
|
||||
|
@ -108,7 +108,7 @@
|
|||
tpr.is_admin = true))
|
||||
and p1.deleted_at is null
|
||||
union
|
||||
select p2.*, t.name as team_name
|
||||
select p2.*, t.name as team_name, t.is_default as default_team
|
||||
from project as p2
|
||||
inner join team as t
|
||||
on t.id = p2.team_id
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue