Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ node_modules/
!.vscode/extensions.json

# misc
/.angular/cache
/.angular/cache
/.sass-cache
/connect.lock
/coverage
Expand Down Expand Up @@ -57,3 +57,6 @@ planet.yml

# Dev environment
environment.dev.ts

# Gemini CLI configuration
gemini-extension.json
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Careful, sometimes Jules and Codex can create unnecessary file/line changes.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can confirm that the gemini cli doesn't need the gemini-extension.json to run

26 changes: 13 additions & 13 deletions src/app/community/community.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,19 +47,7 @@
<p i18n>No Voices available.</p>
</ng-template>
</mat-tab>
<mat-tab [label]="leadersTabLabel" *ngIf="isLoggedIn">
<div class="card-grid">
<mat-card *ngFor="let councillor of councillors">
<planet-teams-member
[leadershipTitle]="councillor.doc.leadershipTitle"
[member]="councillor"
[actionMenu]="!planetCode && (user.roles.indexOf('_admin') > -1 || user.roles.indexOf('manager') > -1) ? [ 'title' ] : []"
(actionClick)="openChangeTitleDialog($event)">
</planet-teams-member>
</mat-card>
</div>
</mat-tab>
<mat-tab i18n-label label="Services" *ngIf="isLoggedIn">
<mat-tab i18n-label label="Information" *ngIf="isLoggedIn">
<b i18n>{ configuration.planetType, select, community {Community} nation {Nation} center {Earth}} Description</b>
<ng-container *ngIf="!planetCode">
</ng-container>
Expand Down Expand Up @@ -109,6 +97,18 @@ <h3 mat-subheader i18n>Social & Web</h3>
</button>
</div>
</mat-tab>
<mat-tab [label]="leadersTabLabel" *ngIf="isLoggedIn">
<div class="card-grid">
<mat-card *ngFor="let councillor of councillors">
<planet-teams-member
[leadershipTitle]="councillor.doc.leadershipTitle"
[member]="councillor"
[actionMenu]="!planetCode && (user.roles.indexOf('_admin') > -1 || user.roles.indexOf('manager') > -1) ? [ 'title' ] : []"
(actionClick)="openChangeTitleDialog($event)">
</planet-teams-member>
</mat-card>
</div>
</mat-tab>
<mat-tab *ngIf="configuration.planetType==='nation' && isLoggedIn" i18n-label label="Communities">
<planet-community-list></planet-community-list>
</mat-tab>
Expand Down
Loading