Commit fbacfdb0 authored by Jacob Schatz's avatar Jacob Schatz

Fixes broken edit mode in editor.

parent ca6d178d
...@@ -68,7 +68,7 @@ const RepoEditor = { ...@@ -68,7 +68,7 @@ const RepoEditor = {
editMode() { editMode() {
const panelClassList = document.querySelector('.panel-right').classList; const panelClassList = document.querySelector('.panel-right').classList;
let readOnly = true; let readOnly = false;
if (this.editMode) { if (this.editMode) {
panelClassList.add('edit-mode'); panelClassList.add('edit-mode');
......
...@@ -49,6 +49,7 @@ ...@@ -49,6 +49,7 @@
.cursor { .cursor {
background: $black; background: $black;
border-color: $black; border-color: $black;
display: block !important;
} }
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment