Skip to content

Commit

Permalink
Issue (#PS-2890, #PS-2900) feat: Remove BMGS hardcoding from Collecti…
Browse files Browse the repository at this point in the history
…on Editor & fix: Keywords not showing in Editor Form
  • Loading branch information
rajnishdargan committed Dec 30, 2024
1 parent 23106fb commit 0c9dd41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/CollectionEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ const CollectionEditor: React.FC = () => {

script.id = "collection-editor-js";
script.src =
"https://cdn.jsdelivr.net/npm/@tekdi/[email protected].0/sunbird-collection-editor.js";
"https://cdn.jsdelivr.net/npm/@tekdi/[email protected].1/sunbird-collection-editor.js";
script.async = true;
script.onload = () => setAssetsLoaded(true);
document.body.appendChild(script);
Expand All @@ -177,7 +177,7 @@ const CollectionEditor: React.FC = () => {
link.id = "collection-editor-css";
link.rel = "stylesheet";
link.href =
"https://cdn.jsdelivr.net/npm/@tekdi/[email protected].0/styles.css";
"https://cdn.jsdelivr.net/npm/@tekdi/[email protected].1/styles.css";
document.head.appendChild(link);
}

Expand Down

0 comments on commit 0c9dd41

Please sign in to comment.