diff --git a/src/octoprint/plugins/svgtogcode/static/js/working_area.js b/src/octoprint/plugins/svgtogcode/static/js/working_area.js
index cd38f891..26ec3853 100644
--- a/src/octoprint/plugins/svgtogcode/static/js/working_area.js
+++ b/src/octoprint/plugins/svgtogcode/static/js/working_area.js
@@ -284,12 +284,12 @@ $(function(){
newSvg.transformable();
newSvg.ftRegisterCallback(self.svgTransformUpdate);
- file.id = id; // list entry id
- file.previewId = previewId;
- file.url = url;
- file.misfit = "";
-
- self.placedDesigns.push(file);
+ var fileCopy = $.extend(true,{},file);
+ fileCopy.id = id; // list entry id
+ fileCopy.previewId = previewId;
+ fileCopy.url = url;
+ fileCopy.misfit = "";
+ self.placedDesigns.push(fileCopy);
};
self.loadSVG(url, callback);
};
@@ -438,11 +438,13 @@ $(function(){
newImg.transformable();
//newImg.ftDisableRotate();
newImg.ftRegisterCallback(self.svgTransformUpdate);
- file.id = id;
- file.previewId = previewId;
- file.url = url;
- file.subtype = "bitmap";
- self.placedDesigns.push(file);
+
+ var fileCopy = $.extend(true,{},file);
+ fileCopy.id = id;
+ fileCopy.previewId = previewId;
+ fileCopy.url = url;
+ fileCopy.subtype = "bitmap";
+ self.placedDesigns.push(fileCopy);
};
img.src = url;
};
diff --git a/src/octoprint/templates/mrbeam_index.jinja2 b/src/octoprint/templates/mrbeam_index.jinja2
index 3e6ec539..78d71d83 100644
--- a/src/octoprint/templates/mrbeam_index.jinja2
+++ b/src/octoprint/templates/mrbeam_index.jinja2
@@ -160,7 +160,7 @@
-->
{{ _('Approx. Total Job Time') }}: