Skip to content

Commit b54fddf

Browse files
3011089503Mutugiiidogi
authored
dashboard: smoother groups list (fixes #8677) (#8685)
Co-authored-by: mutugiii <[email protected]> Co-authored-by: dogi <[email protected]>
1 parent 846ca80 commit b54fddf

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "planet",
33
"license": "AGPL-3.0",
4-
"version": "0.19.17",
4+
"version": "0.19.18",
55
"myplanet": {
6-
"latest": "v0.25.74",
7-
"min": "v0.24.74"
6+
"latest": "v0.25.79",
7+
"min": "v0.24.79"
88
},
99
"scripts": {
1010
"ng": "ng",

src/app/teams/teams.component.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@
4646
<h3 class="team-name">
4747
{{element.doc.name | truncateText:150}}
4848
<mat-icon class="margin-lr-3" i18n-title title="{{ mode === 'enterprise' ? 'Joined Enterprise' : 'Joined Team' }}" [inline]="true" *ngIf="element.userStatus=='member'">check</mat-icon>
49+
<span *ngIf="myTeamsFilter==='on'" class="team-type-label" i18n>
50+
({{ element.doc.type === 'enterprise' ? 'enterprise' : 'team' }})
51+
</span>
4952
</h3>
5053
</mat-cell>
5154
</ng-container>

src/app/teams/teams.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,11 @@
4444
background-color: $accent;
4545
}
4646

47+
.team-type-label {
48+
font-size: 12px;
49+
color: #666;
50+
}
51+
4752
@media (max-width: $screen-sm) {
4853
mat-cell button {
4954
min-width: 0;

0 commit comments

Comments
 (0)