From 8223011c3da93f54a2a3968980e199d4feb929b9 Mon Sep 17 00:00:00 2001 From: James George Date: Sat, 29 Aug 2020 13:11:49 +0530 Subject: [PATCH] chore: rename exported files (#1127) * chore: rename to hoppscotch-collection.json * chore: rename to hoppscotch-environment.json --- components/collections/import-export-collections.vue | 2 +- components/environments/import-export-environment.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/collections/import-export-collections.vue b/components/collections/import-export-collections.vue index 924b62f9d..93b91b9fb 100644 --- a/components/collections/import-export-collections.vue +++ b/components/collections/import-export-collections.vue @@ -157,7 +157,7 @@ export default { type: "text/json", }) let anchor = document.createElement("a") - anchor.download = "postwoman-collection.json" + anchor.download = "hoppscotch-collection.json" anchor.href = window.URL.createObjectURL(blob) anchor.target = "_blank" anchor.style.display = "none" diff --git a/components/environments/import-export-environment.vue b/components/environments/import-export-environment.vue index ce82b4d75..876fdf30d 100644 --- a/components/environments/import-export-environment.vue +++ b/components/environments/import-export-environment.vue @@ -158,7 +158,7 @@ export default { type: "text/json", }) let anchor = document.createElement("a") - anchor.download = "postwoman-environment.json" + anchor.download = "hoppscotch-environment.json" anchor.href = window.URL.createObjectURL(blob) anchor.target = "_blank" anchor.style.display = "none"