diff --git a/client/web/src/components/panels/Document.vue b/client/web/src/components/panels/Document.vue
index e2ddfe89c..46cdf9dda 100644
--- a/client/web/src/components/panels/Document.vue
+++ b/client/web/src/components/panels/Document.vue
@@ -308,8 +308,8 @@ export default defineComponent({
const { reset_colors } = await wasm;
reset_colors();
},
- download(filename: string, svgData: string) {
- const svgBlob = new Blob([svgData], { type: "image/svg+xml;charset=utf-8" });
+ download(filename: string, fileData: string) {
+ const svgBlob = new Blob([fileData], { type: "image/svg+xml;charset=utf-8" });
const svgUrl = URL.createObjectURL(svgBlob);
const element = document.createElement("a");
diff --git a/client/web/src/components/widgets/floating-menus/MenuList.vue b/client/web/src/components/widgets/floating-menus/MenuList.vue
index 9fa40245a..cb1e5857e 100644
--- a/client/web/src/components/widgets/floating-menus/MenuList.vue
+++ b/client/web/src/components/widgets/floating-menus/MenuList.vue
@@ -12,13 +12,18 @@
@mouseleave="handleEntryMouseLeave(entry)"
:data-hover-menu-spawner-extend="entry.children && []"
>
-