diff --git a/src/components/medialibrarycreator/medialibrarycreator.js b/src/components/medialibrarycreator/medialibrarycreator.js
index 5fd94022f9..af51d2ef54 100644
--- a/src/components/medialibrarycreator/medialibrarycreator.js
+++ b/src/components/medialibrarycreator/medialibrarycreator.js
@@ -42,11 +42,9 @@ define(["loading", "dialogHelper", "dom", "jQuery", "components/libraryoptionsed
}
function getCollectionTypeOptionsHtml(collectionTypeOptions) {
- return collectionTypeOptions.filter(function(i) {
- return i.isSelectable
- }).map(function(i) {
- return '"
- }).join("")
+ return collectionTypeOptions.map(function(i) {
+ return '";
+ }).join("");
}
function initEditor(page, collectionTypeOptions) {