From 0c9549737d69c5783d7c646aa2a0d67a63baaf70 Mon Sep 17 00:00:00 2001 From: Wassaf-Shahzad <87968618+Wassaf-Shahzad@users.noreply.github.com> Date: Mon, 12 Sep 2022 00:11:35 -0700 Subject: [PATCH] removed underline PR (#1475) --- static/js/lib/ckeditor/CKEditor.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/static/js/lib/ckeditor/CKEditor.ts b/static/js/lib/ckeditor/CKEditor.ts index b850db20f..f03765668 100644 --- a/static/js/lib/ckeditor/CKEditor.ts +++ b/static/js/lib/ckeditor/CKEditor.ts @@ -2,7 +2,6 @@ import EssentialsPlugin from "@ckeditor/ckeditor5-essentials/src/essentials" import AutoformatPlugin from "@ckeditor/ckeditor5-autoformat/src/autoformat" import BoldPlugin from "@ckeditor/ckeditor5-basic-styles/src/bold" import ItalicPlugin from "@ckeditor/ckeditor5-basic-styles/src/italic" -import UnderlinePlugin from "@ckeditor/ckeditor5-basic-styles/src/underline" import BlockQuotePlugin from "@ckeditor/ckeditor5-block-quote/src/blockquote" import HeadingPlugin from "@ckeditor/ckeditor5-heading/src/heading" import ImagePlugin from "@ckeditor/ckeditor5-image/src/image" @@ -69,7 +68,6 @@ export const FullEditorConfig = { ItalicPlugin, // note that this is just for inline (not block-level) code CodePlugin, - UnderlinePlugin, BlockQuotePlugin, HeadingPlugin, ImagePlugin, @@ -98,7 +96,6 @@ export const FullEditorConfig = { "|", "bold", "italic", - "underline", "link", "bulletedList", "numberedList", @@ -132,7 +129,6 @@ export const MinimalEditorConfig = { BoldPlugin, ItalicPlugin, CodePlugin, - UnderlinePlugin, BlockQuotePlugin, LinkPlugin, ListPlugin, @@ -149,7 +145,6 @@ export const MinimalEditorConfig = { items: [ "bold", "italic", - "underline", "code", "link", "bulletedList",