Skip to content

Commit b48c6c3

Browse files
chore(ui): amend flow export method (#6835)
1 parent 7e926fc commit b48c6c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: ui/src/components/inputs/EditorView.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1322,7 +1322,7 @@
13221322
import localUtils from "../../utils/utils";
13231323
const exportYaml = () => {
13241324
const blob = new Blob([flowYaml.value], {type: "text/yaml"});
1325-
localUtils.downloadUrl(blob, "flow.yaml");
1325+
localUtils.downloadUrl(window.URL.createObjectURL(blob), "flow.yaml");
13261326
};
13271327
</script>
13281328

0 commit comments

Comments
 (0)