Customize Dashboard (Succeeded & Failed List)

If you are using .net core you can use the JobDisplayNameAttribute link to PR
[JobDisplayName(“Run {0}”)] // {0} is the first parameter of your method (google.com in your case)

if not on .net core, I think you can use the DisplayNameAttribute
[DisplayName(“Run {0}”)] // {0} is the first parameter of your method (google.com in your case)

Here’s another question with the same problem

1 Like