From 43e1e6d22bf97d94b531abc99e93d7f1440dc7be Mon Sep 17 00:00:00 2001 From: Art Lowel Date: Thu, 1 Jun 2023 10:56:44 +0200 Subject: [PATCH 1/2] add noreferrer to license link --- .../cc-license/submission-section-cc-licenses.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/submission/sections/cc-license/submission-section-cc-licenses.component.html b/src/app/submission/sections/cc-license/submission-section-cc-licenses.component.html index bdde0ff470..20743540a8 100644 --- a/src/app/submission/sections/cc-license/submission-section-cc-licenses.component.html +++ b/src/app/submission/sections/cc-license/submission-section-cc-licenses.component.html @@ -128,7 +128,7 @@
{{ 'submission.sections.ccLicense.link' | translate }}
- + {{ licenseLink }}
From d1dff0553d9a2b7b8af1ac9856be4367b8a8cc4a Mon Sep 17 00:00:00 2001 From: Art Lowel Date: Thu, 1 Jun 2023 11:00:26 +0200 Subject: [PATCH 2/2] fix lint error --- src/app/core/services/browser.referrer.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/core/services/browser.referrer.service.ts b/src/app/core/services/browser.referrer.service.ts index 5aae750599..64be95d241 100644 --- a/src/app/core/services/browser.referrer.service.ts +++ b/src/app/core/services/browser.referrer.service.ts @@ -1,7 +1,7 @@ import { ReferrerService } from './referrer.service'; import { Observable } from 'rxjs'; import { map } from 'rxjs/operators'; -import { isEmpty, hasNoValue } from '../../shared/empty.util'; +import { hasNoValue } from '../../shared/empty.util'; import { URLCombiner } from '../url-combiner/url-combiner'; import { Inject, Injectable } from '@angular/core'; import { DOCUMENT } from '@angular/common';