fix: empty string exported when exporting team collections (#2460)

This commit is contained in:
Akash K 2022-06-27 22:24:38 +05:30 committed by GitHub
parent 69aaeaf42a
commit ca553b9d3c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -244,7 +244,7 @@ const createCollectionGist = async () => {
return
}
getJSONCollection()
await getJSONCollection()
try {
const res = await axios.$post(
@ -316,8 +316,8 @@ const importToTeams = async (content: HoppCollection<HoppRESTRequest>) => {
importingMyCollections.value = false
}
const exportJSON = () => {
getJSONCollection()
const exportJSON = async () => {
await getJSONCollection()
const dataToWrite = collectionJson.value
const file = new Blob([dataToWrite], { type: "application/json" })