diff --git a/src/Resources/public/js/pimcore/document/editables/outputchanneltable.js b/src/Resources/public/js/pimcore/document/editables/outputchanneltable.js index 7b53466..37dfe45 100644 --- a/src/Resources/public/js/pimcore/document/editables/outputchanneltable.js +++ b/src/Resources/public/js/pimcore/document/editables/outputchanneltable.js @@ -467,7 +467,7 @@ pimcore.document.editables.outputchanneltable = Class.create(pimcore.document.ed getCurrentClassId: function() { var classStore = pimcore.globalmanager.get("object_types_store"); - var index = classStore.find("text", this.selectedClass); + var index = classStore.find("text", this.selectedClass, 0, false, false, true); if(typeof index !== 'undefined' && classStore.getAt(index)) { return classStore.getAt(index).id; }