Browse Source

docs: Fix code example for custom history timeline component

Michael Bromley 1 year ago
parent
commit
ac29e2537c

+ 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-history-entry-detail>
         </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,
     imports: [SharedModule],