We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 798511b commit f8e62e2Copy full SHA for f8e62e2
1 file changed
web/schemas.js
@@ -24,5 +24,9 @@ export const getSchemaYaml = async (schema_folder) => {
24
};
25
26
export const getExportFormats = async (schema_folder) => {
27
- return (await import(`./templates/${schema_folder}/export.js`)).default;
+ try {
28
+ return (await import(`./templates/${schema_folder}/export.js`)).default;
29
+ } catch (e) {
30
+ return {};
31
+ }
32
0 commit comments