From 077ecf8a80733878fd35a407bdd623273598c3e2 Mon Sep 17 00:00:00 2001 From: Tim Zallmann Date: Thu, 12 Oct 2017 12:17:18 +0200 Subject: Fixes the Problem with the Repo Editor Loading Typescript Services --- app/assets/javascripts/repo/components/repo_editor.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'app/assets') diff --git a/app/assets/javascripts/repo/components/repo_editor.vue b/app/assets/javascripts/repo/components/repo_editor.vue index 96d6a75bb61..b316c3ae02d 100644 --- a/app/assets/javascripts/repo/components/repo_editor.vue +++ b/app/assets/javascripts/repo/components/repo_editor.vue @@ -22,7 +22,8 @@ const RepoEditor = { const monacoInstance = Helper.monaco.editor.create(this.$el, { model: null, readOnly: false, - contextmenu: false, + contextmenu: true, + scrollBeyondLastLine: false, }); Helper.monacoInstance = monacoInstance; -- cgit v1.2.1