From c148f36c4dfaa46b1acbf462877e8a2a02731bef Mon Sep 17 00:00:00 2001 From: Andrew Brown Date: Wed, 10 Apr 2019 00:41:53 -0500 Subject: [PATCH] contenteditable false on the inserted links --- app/views/documents/edit.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/documents/edit.html.erb b/app/views/documents/edit.html.erb index e7a0d4ad..ad4b5816 100644 --- a/app/views/documents/edit.html.erb +++ b/app/views/documents/edit.html.erb @@ -186,7 +186,7 @@ ], selectTemplate: function (item) { // We're overriding the default here so we don't prepend a @ - return '' + item.original.value + ''; + return '' + item.original.value + ''; }, menuItemTemplate: function (item) { return '' + item.original.icon + '' + item.string;