We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86a02ae commit 59dccabCopy full SHA for 59dccab
src/store.js
@@ -129,7 +129,8 @@ export const store = new Vuex.Store({
129
if (!item.tags.includes("editable")) item.tags.push("editable");
130
}
131
132
- item.config._rdf_file = item.config._rdf_file || item.source; // TODO: some resources current doesn't have a dedicated rdf_file
+ item.config._rdf_file =
133
+ item.config._rdf_file || item.rdf_source || item.source; // TODO: some resources current doesn't have a dedicated rdf_file
134
if (item.type === "application" && item?.source?.endsWith(".imjoy.html"))
135
state.allApps[item.id] = item;
136
item.tags = item.tags.map(tag => tag.toLowerCase());
0 commit comments