diff --git a/src/page-circle-edit.pug b/src/page-circle-edit.pug
index 3cc10e3ef079f13174a3e00531993e87b111e0ee..6c07ebbb2a49827de2c403cccce170c9c1b98ac3 100644
--- a/src/page-circle-edit.pug
+++ b/src/page-circle-edit.pug
@@ -58,6 +58,7 @@ div.content-box__info
     partial=''
 
     submit-button='Save'
+    next='circle-information'
   )
 
   h2 Members list
diff --git a/src/scripts/index.js b/src/scripts/index.js
index a49eb8b389627dc98439fa663ee105441b77379c..b50faf00155e02afa1a62c0b4f79059e0834863d 100644
--- a/src/scripts/index.js
+++ b/src/scripts/index.js
@@ -75,6 +75,23 @@ document.addEventListener('DOMContentLoaded', function (event) {
     })
   });
 
+  //- Watch every sib-forms & update data-src of linked sib-display
+  document.querySelectorAll('sib-form').forEach(function(el) {
+    el.addEventListener("save", function(event) {
+      //clear cache on this resource
+      //NOTE: this is required because the cache is not refreshed after POSTing changes on the resource
+      if(el.component.resource != null) el.component.resource.clearCache();
+
+      // if of the edited resource || id of the container of the created resource
+      const resourceId = event.detail.resource['@id'] || el.dataset.src;
+
+      //update all displays which use this resource
+      Array.from(document.querySelectorAll('sib-display'))
+      .filter(sibDisplay => sibDisplay.component.resourceId == resourceId) // keep only elements with resource == edited resource
+      .forEach(e => e.dataset.src = e.dataset.src); // and update them
+    });
+  });
+
   document.querySelector('sib-auth').getUser().then(user => {
     if (user !== null) {
       // Hide login button if already logged