Skip to content

Commit ab9dd73

Browse files
dgp1130thePunderWoman
authored andcommitted
refactor(devtools): removes unused classes (angular#60475)
These `cy-*` classes are not referenced in any styles and appear to be unused. PR Close angular#60475
1 parent 61ff42a commit ab9dd73

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

devtools/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/property-tab/property-view/property-view-body.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
@for (panel of panels(); track $index) {
2626
<div class="mat-accordion-content" cdkDrag>
2727
@if (panel.controls().dataSource.data.length > 0) {
28-
<mat-expansion-panel [class]="panel.class" [expanded]="true">
28+
<mat-expansion-panel [expanded]="true">
2929
<mat-expansion-panel-header collapsedHeight="25px" expandedHeight="25px">
3030
<mat-panel-title>{{ panel.title }}</mat-panel-title>
3131
</mat-expansion-panel-header>

devtools/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/property-tab/property-view/property-view-body.component.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,17 +48,14 @@ export class PropertyViewBodyComponent {
4848
{
4949
title: 'Inputs',
5050
controls: () => this.directiveInputControls(),
51-
class: 'cy-inputs',
5251
},
5352
{
5453
title: 'Outputs',
5554
controls: () => this.directiveOutputControls(),
56-
class: 'cy-outputs',
5755
},
5856
{
5957
title: 'Properties',
6058
controls: () => this.directiveStateControls(),
61-
class: 'cy-properties',
6259
},
6360
]);
6461

0 commit comments

Comments
 (0)