aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/ServicesStore.js
diff options
context:
space:
mode:
authorLibravatar Gustavo Sampaio <gbritosampaio@gmail.com>2017-10-26 11:57:09 -0300
committerLibravatar Gustavo Sampaio <gbritosampaio@gmail.com>2017-10-26 11:57:09 -0300
commitaa256d1bb7543b93f080706e593896e46fc9800b (patch)
tree16b682a0fd6608f386442766fcfce9447b931b39 /src/stores/ServicesStore.js
parentBump version to 5.0.0-beta.11 (diff)
downloadferdium-app-aa256d1bb7543b93f080706e593896e46fc9800b.tar.gz
ferdium-app-aa256d1bb7543b93f080706e593896e46fc9800b.tar.zst
ferdium-app-aa256d1bb7543b93f080706e593896e46fc9800b.zip
Bugfix: When reordering make sure the new indexes are applied correctly
Diffstat (limited to 'src/stores/ServicesStore.js')
-rw-r--r--src/stores/ServicesStore.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stores/ServicesStore.js b/src/stores/ServicesStore.js
index 19db05494..4510146e0 100644
--- a/src/stores/ServicesStore.js
+++ b/src/stores/ServicesStore.js
@@ -383,7 +383,7 @@ export default class ServicesStore extends Store {
383 data.forEach((s) => { 383 data.forEach((s) => {
384 const service = s; 384 const service = s;
385 385
386 service.order = this.one(s.id).order; 386 service.order = services[s.id];
387 }); 387 });
388 }); 388 });
389 389