From 56ee3c64d1ba8316a8c65e25549142200472246e Mon Sep 17 00:00:00 2001 From: rhenck <richard.henck@iqb.hu-berlin.de> Date: Thu, 16 Dec 2021 18:46:13 +0100 Subject: [PATCH] [editor] Add long dash to special characters in TextEditor --- .../editor/src/app/text-editor/rich-text-editor.component.html | 1 + 1 file changed, 1 insertion(+) 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 c92836cd9..7f2e7dc99 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 @@ -198,6 +198,7 @@ <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