diff --git a/apps/octra/src/app/core/modals/bugreport-modal/bugreport-modal.component.html b/apps/octra/src/app/core/modals/bugreport-modal/bugreport-modal.component.html
index f68f1c6af..bebb9ae26 100644
--- a/apps/octra/src/app/core/modals/bugreport-modal/bugreport-modal.component.html
+++ b/apps/octra/src/app/core/modals/bugreport-modal/bugreport-modal.component.html
@@ -46,8 +46,8 @@
[(ngModel)]="profile.username"
/>
+ 'g.name' | transloco
+ }}
@@ -62,26 +62,25 @@
placeholder="email@example.com"
/>
+ 'g.email' | transloco
+ }}
@@ -99,7 +98,7 @@
class="upload-screenshot"
>
XX
10000) {
+ alert(
+ `Please write a message with less 10000 letters. Remove ${
+ this.bgdescr.length - 10000
+ } letters.`
+ );
+ return;
+ }
+
this.sendStatus = 'sending';
this.subscrManager.add(
this.bugService
diff --git a/apps/octra/src/app/core/modals/modals.module.ts b/apps/octra/src/app/core/modals/modals.module.ts
index b4a2b50cc..6ab98de3d 100644
--- a/apps/octra/src/app/core/modals/modals.module.ts
+++ b/apps/octra/src/app/core/modals/modals.module.ts
@@ -46,6 +46,7 @@ import { ReAuthenticationModalComponent } from './re-authentication-modal/re-aut
import { AuthenticationComponent } from '../component/authentication-component/authentication-component.component';
import { AboutModalComponent } from './about-modal/about-modal.component';
import { FeedbackNoticeModalComponent } from './feedback-notice-modal/feedback-notice-modal.component';
+import { NgxJoditComponent } from 'ngx-jodit';
@Injectable({ providedIn: 'root' })
export class TranslocoHttpLoader implements TranslocoLoader {
@@ -100,6 +101,7 @@ export class TranslocoHttpLoader implements TranslocoLoader {
NgbModalModule,
OctraUtilitiesModule,
NgbAccordionCollapse,
+ NgxJoditComponent,
],
exports: [
BugreportModalComponent,