From a235a909bbb4b5391e4204061b3463913f97fb4d Mon Sep 17 00:00:00 2001 From: rhenck <richard.henck@iqb.hu-berlin.de> Date: Wed, 15 Dec 2021 21:55:20 +0100 Subject: [PATCH] [editor] Fix quotes in TextEditor Correct german form: 99-66 --- .../editor/src/app/text-editor/rich-text-editor.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/editor/src/app/text-editor/rich-text-editor.component.html b/projects/editor/src/app/text-editor/rich-text-editor.component.html index 95fe276ff..c92836cd9 100644 --- a/projects/editor/src/app/text-editor/rich-text-editor.component.html +++ b/projects/editor/src/app/text-editor/rich-text-editor.component.html @@ -197,7 +197,7 @@ [matTooltip]="'Geschütztes Leerzeichen'">␣</button> <button mat-button (click)="insertSpecialChar('’')">’</button> <button mat-button (click)="insertSpecialChar('„')">„</button> - <button mat-button (click)="insertSpecialChar('”')">”</button> + <button mat-button (click)="insertSpecialChar('“')">“</button> <button mat-button (click)="insertSpecialChar('♀')">♀</button> <button mat-button (click)="insertSpecialChar('♂')">♂</button> <button mat-button (click)="insertSpecialChar('µ')">µ</button> -- GitLab