Skip to content

Commit

Permalink
Update external-link-icon.pipe.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
bwp91 committed Nov 8, 2023
1 parent 713b00c commit e295e6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/app/core/pipes/external-link-icon.pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Pipe, PipeTransform } from '@angular/core';
export class ExternalLinkIconPipe implements PipeTransform {

transform(value: string, ...args: unknown[]): unknown {
return value.startsWith('https://github.com') ? 'fab fa-github' : 'fas fa-fw fa-question-circle';
return value.startsWith('https://github.com/') ? 'fab fa-fw fa-github' : 'fas fa-fw fa-question-circle';
}

}

0 comments on commit e295e6a

Please sign in to comment.