This is an automated email from the ASF dual-hosted git repository.

ccondit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/yunikorn-web.git


The following commit(s) were added to refs/heads/master by this push:
     new e1b13b6  [YUNIKORN-2923] Fix invalid routerLink setting in header 
breadcrumb (#211)
e1b13b6 is described below

commit e1b13b6223caa078401ce53022702a9d8b3b4fe7
Author: SP12893678 <[email protected]>
AuthorDate: Thu Oct 17 15:56:41 2024 -0500

    [YUNIKORN-2923] Fix invalid routerLink setting in header breadcrumb (#211)
    
    Closes: #211
    
    Signed-off-by: Craig Condit <[email protected]>
---
 src/app/app.component.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/app/app.component.html b/src/app/app.component.html
index e642886..6b4c29a 100644
--- a/src/app/app.component.html
+++ b/src/app/app.component.html
@@ -82,7 +82,7 @@
       <div class="breadcrumb-wrapper">
         <ul class="breadcrumb">
           <li *ngFor="let crumb of breadcrumbs">
-            <a href="#" routerLink="crumb.url">{{ crumb.label }}</a>
+            <a href="#" [routerLink]="[crumb.url]">{{ crumb.label }}</a>
           </li>
         </ul>
         <div class="help-menu">


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to