Merge pull request #1276 from GNS3/bugfix/1274

Link added
This commit is contained in:
Jeremy Grossmann 2022-03-23 17:45:48 +10:00 committed by GitHub
commit 2f9999b41c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 2 deletions

View File

@ -21,7 +21,8 @@
<mat-expansion-panel-header> <mat-expansion-panel-header>
<mat-panel-title> Third party components </mat-panel-title> <mat-panel-title> Third party components </mat-panel-title>
</mat-expansion-panel-header> </mat-expansion-panel-header>
<div [innerHTML]="thirdpartylicenses"></div> <a href="https://downloads.solarwinds.com/solarwinds/GNS3/Solar-PuTTY/Solar-PuTTY-Optional.exe">
<div [innerHTML]="thirdpartylicenses" ></div></a>
</mat-expansion-panel> </mat-expansion-panel>
<mat-expansion-panel> <mat-expansion-panel>
<mat-expansion-panel-header> <mat-expansion-panel-header>

View File

@ -2,3 +2,10 @@
width: 100%; width: 100%;
margin-top: 20px; margin-top: 20px;
} }
a {
color: #f8f9fa;
font-family: Roboto, "Helvetica Neue", sans-serif;
font-size: 14px;
font-weight: 400;
text-decoration: none;
}

View File

@ -19,7 +19,7 @@ export class HelpComponent implements OnInit {
}, },
(error) => { (error) => {
if (error.status === 404) { if (error.status === 404) {
this.thirdpartylicenses = 'File not found'; this.thirdpartylicenses = 'Download Solar-PuTTY';
} }
} }
); );