diff --git a/devtools/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/property-tab/property-view/property-view-body.component.html b/devtools/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/property-tab/property-view/property-view-body.component.html index 1235fe49b97..2fa9a29cb5c 100644 --- a/devtools/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/property-tab/property-view/property-view-body.component.html +++ b/devtools/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/property-tab/property-view/property-view-body.component.html @@ -27,18 +27,7 @@ @if (!panel.hidden) { - - {{ panel.title }} - - open_in_new - - + {{ panel.title }} (() => { @@ -60,21 +59,18 @@ export class PropertyViewBodyComponent { title: 'Inputs', hidden: this.directiveInputControls().dataSource.data.length === 0, controls: this.directiveInputControls(), - documentation: 'https://angular.dev/api/core/input', class: 'cy-inputs', }, { title: 'Outputs', hidden: this.directiveOutputControls().dataSource.data.length === 0, controls: this.directiveOutputControls(), - documentation: 'https://angular.dev/api/core/output', class: 'cy-outputs', }, { title: 'Properties', hidden: this.directiveStateControls().dataSource.data.length === 0, controls: this.directiveStateControls(), - documentation: 'https://angular.dev/guide/templates/property-binding', class: 'cy-properties', }, ];