diff --git a/test15july-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/login/login-page/login-page.component.html b/test15july-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/login/login-page/login-page.component.html index df4eba9..d074684 100644 --- a/test15july-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/login/login-page/login-page.component.html +++ b/test15july-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/login/login-page/login-page.component.html @@ -143,4 +143,39 @@ - \ No newline at end of file + + +# AI Generated Changes: +``` +```diff +--- a/test15july-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/login/login-page/login-page.component.html ++++ b/test15july-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/login/login-page/login-page.component.html +@@ -72,7 +72,7 @@ +
+
+

{{ loginEnvironment.loginHeading | sanitize}}

+- {{ loginEnvironment.loginHeading2 | sanitize }} ++ +
{{ loginEnvironment.loginSignup | sanitize}}
+
+
+@@ -106,7 +106,7 @@ + +
+

{{ loginEnvironment.loginHeading | sanitize}}

+- {{ loginEnvironment.loginHeading2 | sanitize }} ++ +
{{ loginEnvironment.loginSignup | sanitize}}
+
+ +``` +``` diff --git a/test15july-front-f/authsec_angular/frontend/angular-clarity-master/src/app/pipes/helpers.module.ts b/test15july-front-f/authsec_angular/frontend/angular-clarity-master/src/app/pipes/helpers.module.ts index 8020056..0f37aee 100644 --- a/test15july-front-f/authsec_angular/frontend/angular-clarity-master/src/app/pipes/helpers.module.ts +++ b/test15july-front-f/authsec_angular/frontend/angular-clarity-master/src/app/pipes/helpers.module.ts @@ -29,3 +29,34 @@ import { RemoveCommasPipe } from './remove-commas.pipe'; ] }) export class HelperModule { } + + +# AI Generated Changes: +``` +```diff +--- a/test15july-front-f/authsec_angular/frontend/angular-clarity-master/src/app/pipes/helpers.module.ts ++++ b/test15july-front-f/authsec_angular/frontend/angular-clarity-master/src/app/pipes/helpers.module.ts +@@ -5,6 +5,7 @@ + import {TimePipePipe} from './time-pipe.pipe'; + import { SearchFilterPipe } from './search-filter.pipe'; + import { RemoveCommasPipe } from './remove-commas.pipe'; ++import { SanitizePipe } from './sanitize.pipe'; // Import the pipe + @NgModule({ + imports: [ +@@ -16,6 +17,7 @@ + TimePipePipe, + SearchFilterPipe, + RemoveCommasPipe, ++ SanitizePipe, // Add to declarations + ], + exports: [ + ThaiDatePipe, +@@ -23,6 +25,7 @@ + TimePipePipe, + SearchFilterPipe, + RemoveCommasPipe, ++ SanitizePipe, // Add to exports + ] + }) + export class HelperModule { } +```