diff --git a/projects/common/components/compound-elements/likert/likert.component.ts b/projects/common/components/compound-elements/likert/likert.component.ts
index b82960fdc485e1e308a6e741619c2cac4651e4f3..19afd7dd24d3547e24b0d07224fb92fa2d0b1dcf 100644
--- a/projects/common/components/compound-elements/likert/likert.component.ts
+++ b/projects/common/components/compound-elements/likert/likert.component.ts
@@ -52,7 +52,7 @@ import { LikertRadioButtonGroupComponent } from './likert-radio-button-group.com
           <img *ngIf="column.imgSrc && column.imgPosition === 'above'"
                [src]="column.imgSrc | safeResourceUrl" alt="Image Placeholder"
                [style.object-fit]="'scale-down'">
-          <div [innerHTML]="sanitizer.bypassSecurityTrustHtml(column.text)"></div>
+          <div [innerHTML]="column.text | safeResourceHTML"></div>
           <img *ngIf="column.imgSrc && column.imgPosition === 'below'"
                [src]="column.imgSrc | safeResourceUrl" alt="Image Placeholder"
                [style.object-fit]="'scale-down'">
diff --git a/projects/common/components/input-elements/radio-button-group.component.ts b/projects/common/components/input-elements/radio-button-group.component.ts
index 542fbad7d9c7bf78d56886da2430908e55e584f8..eb74fde245c80b676a0ce097cc59ae248858af27 100644
--- a/projects/common/components/input-elements/radio-button-group.component.ts
+++ b/projects/common/components/input-elements/radio-button-group.component.ts
@@ -30,7 +30,7 @@ import { FormElementComponent } from '../../directives/form-element-component.di
                           [value]="i"
                           [style.pointer-events]="elementModel.readOnly ? 'none' : 'unset'"
                           [style.line-height.%]="elementModel.styling.lineHeight">
-          <div class="radio-button-label" [innerHTML]="sanitizer.bypassSecurityTrustHtml(option.text)"></div>
+          <div class="radio-button-label" [innerHTML]="option.text | safeResourceHTML"></div>
         </mat-radio-button>
         <mat-error *ngIf="elementFormControl.errors && elementFormControl.touched"
                    class="error-message">
diff --git a/projects/common/components/input-elements/radio-group-images.component.ts b/projects/common/components/input-elements/radio-group-images.component.ts
index 161d30f69345df887fe1d9372698eade8c23e0ac..04fb2520b7283e33143ac0131046954f3c66c59e 100644
--- a/projects/common/components/input-elements/radio-group-images.component.ts
+++ b/projects/common/components/input-elements/radio-group-images.component.ts
@@ -22,7 +22,7 @@ import { FormElementComponent } from '../../directives/form-element-component.di
                [style.object-fit]="'scale-down'"
                [style.max-width.%]="100"
                [src]="option.imgSrc | safeResourceUrl" alt="Image Placeholder">
-          <div [innerHTML]="sanitizer.bypassSecurityTrustHtml(option.text)"
+          <div [innerHTML]="option.text | safeResourceHTML"
                [style.background-color]="elementModel.styling.backgroundColor"
                [style.color]="elementModel.styling.fontColor"
                [style.font-family]="elementModel.styling.font"