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

View File

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