Skip to content

Commit

Permalink
fix identation
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorBaptist4 committed Sep 11, 2024
1 parent 0ef2db1 commit d7869f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export class MetadataValuesComponent implements OnChanges {
* This method performs a validation and determines the target of the url.
* @returns - Returns the target url.
*/
getLinkAttributes(urlValue: string): { target: string, rel: string } {
getLinkAttributes(urlValue: string): { target: string, rel: string } {
if (this.hasInternalLink(urlValue)) {
return { target: '_self', rel: '' };

Check warning on line 144 in src/app/item-page/field-components/metadata-values/metadata-values.component.ts

View check run for this annotation

Codecov / codecov/patch

src/app/item-page/field-components/metadata-values/metadata-values.component.ts#L144

Added line #L144 was not covered by tests
} else {
Expand Down

0 comments on commit d7869f4

Please sign in to comment.