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 { ...@@ -230,7 +230,7 @@ export default {
}, },
watch: { watch: {
blocks() { blocks() {
if (!this.showEdit) { if (!this.showEdit && !this.sortMode) {
this.initCurrentData(); this.initCurrentData();
} }
} }
......
...@@ -1398,7 +1398,9 @@ export default { ...@@ -1398,7 +1398,9 @@ export default {
} }
}, },
containers() { containers() {
if (!this.sortMode) {
this.containerList = this.containers; this.containerList = this.containers;
}
}, },
consumeMode(newState) { consumeMode(newState) {
this.consumModeTrap = newState; this.consumModeTrap = newState;
......
...@@ -248,7 +248,7 @@ export default { ...@@ -248,7 +248,7 @@ export default {
}, },
watch: { watch: {
blocks() { blocks() {
if (!this.showEdit) { if (!this.showEdit && !this.sortMode) {
this.initCurrentData(); this.initCurrentData();
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment