File tree Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -557,9 +557,22 @@ function updateVersionInfo() {
557
557
}
558
558
}
559
559
560
- if ( v . name === "Docker Tag" && versionCompare ( v . local , v . remote ) === - 1 ) {
561
- updateComponentAvailable = true ;
562
- dockerUpdate = true ;
560
+ if ( v . name === "Docker Tag" ) {
561
+ if ( versionCompare ( v . local , v . remote ) === - 1 ) {
562
+ // Display update information for the docker tag
563
+ updateComponentAvailable = true ;
564
+ dockerUpdate = true ;
565
+ } else {
566
+ // Display the link for the current tag
567
+ localVersion =
568
+ '<a href="' +
569
+ v . url +
570
+ "/" +
571
+ localVersion +
572
+ '" rel="noopener" target="_blank">' +
573
+ localVersion +
574
+ "</a>" ;
575
+ }
563
576
}
564
577
565
578
// Display update information of individual components only if we are not running in a Docker container
You can’t perform that action at this time.
0 commit comments