Bladeren bron

docs: Fix code example for custom history timeline component

Michael Bromley 1 jaar geleden
bovenliggende
commit
ac29e2537c
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  1. 1 1
      docs/docs/guides/extending-the-admin-ui/custom-timeline-components/index.md

+ 1 - 1
docs/docs/guides/extending-the-admin-ui/custom-timeline-components/index.md

@@ -34,7 +34,7 @@ import {
                 <vdr-object-tree [value]="entry.data"></vdr-object-tree>
                 <vdr-object-tree [value]="entry.data"></vdr-object-tree>
             </vdr-history-entry-detail>
             </vdr-history-entry-detail>
         </div>
         </div>
-        <div *ngIf="entry.data.valid">Tax ID {{ entry.data.taxId }} could not be verified</div>
+        <div *ngIf="!entry.data.valid">Tax ID {{ entry.data.taxId }} could not be verified</div>
     `,
     `,
     standalone: true,
     standalone: true,
     imports: [SharedModule],
     imports: [SharedModule],