Skip to content

Commit 3cc470d

Browse files
committed
fix: add patch for header.service.ts canonical host
The header.service.ts file was inadvertently left without localization after removing replace-canonical-host.patch. This patch ensures ANGULAR_DEV constant is set to angular.jp.
1 parent 35294d8 commit 3cc470d

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
diff --git a/adev/src/app/core/services/header.service.ts b/adev/src/app/core/services/header.service.ts
2+
index ac27b818c4..3c087a04bb 100644
3+
--- a/adev/src/app/core/services/header.service.ts
4+
+++ b/adev/src/app/core/services/header.service.ts
5+
@@ -3,13 +3,13 @@
6+
* Copyright Google LLC All Rights Reserved.
7+
*
8+
* Use of this source code is governed by an MIT-style license that can be
9+
- * found in the LICENSE file at https://angular.dev/license
10+
+ * found in the LICENSE file at https://angular.jp/license
11+
*/
12+
13+
import {DOCUMENT} from '@angular/common';
14+
import {Injectable, inject} from '@angular/core';
15+
16+
-const ANGULAR_DEV = 'https://angular.dev';
17+
+const ANGULAR_DEV = 'https://angular.jp';
18+
19+
/**
20+
* Information about the deployment of this application.

0 commit comments

Comments
 (0)