can u share how you are including your component ? Because it refreshes the inter frame and i doubt you are doing parent reloading .
you can force refresh by adding below script of category cq.authoring.dialog
(function ($, $document) {
"use strict";
$document.on("dialog-success", function() {
window.location.reload();
})($, $(document));
thanks