Back to Angular

Route Details Row.Component

devtools/projects/ng-devtools/src/lib/devtools-tabs/router-tree/router-details-row/route-details-row.component.html

22.0.0-next.10455 B
Original Source

{{ label() }} | @switch (type()) { @case ('flag') { {{ rowValue() || 'false' }} } @case ('list') { @for (provider of dataArray(); track $index) { {{ provider || '[empty string] ' }} } } @default { @if (rowValue() && renderValueAsJson()) { @if (!node.expandable) { } } @else { {{ rowValue() || '[empty string] ' }} } } } | @if (actionBtnType() !== 'none') { @switch (actionBtnType()) { @case ('view-source') { code } @case ('navigate') { output } } }