Skip to content

Commit a2e6922

Browse files
committed
Teams: Default: Can Edit
1 parent 1aab4c8 commit a2e6922

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/app/component/teams-groups-editor/selectable-list.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export class SelectableListComponent {
1111
@Input() items: string[] = [];
1212
@Input() selectedItem: string | null = null;
1313
@Input() highlightedItems: string[] = [];
14-
@Input() canEdit = false;
14+
@Input() canEdit = true;
1515
@Input() editMode = false;
1616
@Input() addLabel = 'Add';
1717
@Input() typeLabel = '';

src/app/model/meta-store.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export class MetaStore {
3030
teams: TeamNames = [];
3131
activityFiles: string[] = [];
3232
teamProgressFile: string = '';
33-
allowChangeTeamNameInBrowser: boolean = false;
33+
allowChangeTeamNameInBrowser: boolean = true;
3434

3535
dimensionIcons: Record<string, string> = {
3636
'Build and Deployment': 'front_loader',

src/app/pages/teams/teams.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import { isEmptyObj, perfNow, dateStr, uniqueCount } from 'src/app/util/util';
2626
export class TeamsComponent implements OnInit, AfterViewInit {
2727
dateStr = dateStr;
2828
dataStore: DataStore = new DataStore();
29-
canEdit: boolean = false;
29+
canEdit: boolean = true;
3030
teams: TeamNames = [];
3131
teamGroups: TeamGroups = {};
3232

0 commit comments

Comments
 (0)