Skip to content
Snippets Groups Projects
Commit ece378ee authored by Ron Lucke's avatar Ron Lucke Committed by David Siegfried
Browse files

fix #1060

Closes #1060

Merge request studip/studip!627
parent 97bd5e71
No related branches found
No related tags found
No related merge requests found
......@@ -230,7 +230,7 @@ export default {
},
watch: {
blocks() {
if (!this.showEdit) {
if (!this.showEdit && !this.sortMode) {
this.initCurrentData();
}
}
......
......@@ -1398,7 +1398,9 @@ export default {
}
},
containers() {
this.containerList = this.containers;
if (!this.sortMode) {
this.containerList = this.containers;
}
},
consumeMode(newState) {
this.consumModeTrap = newState;
......
......@@ -248,7 +248,7 @@ export default {
},
watch: {
blocks() {
if (!this.showEdit) {
if (!this.showEdit && !this.sortMode) {
this.initCurrentData();
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment