diff --git a/addon/components/power-select-multiple/trigger.js b/addon/components/power-select-multiple/trigger.js index 2ec640acc..953220d85 100644 --- a/addon/components/power-select-multiple/trigger.js +++ b/addon/components/power-select-multiple/trigger.js @@ -70,10 +70,7 @@ export default Component.extend({ }), maybePlaceholder: computed('placeholder', 'select.selected.length', function() { - let component = this.get('placeholderComponent'); - let hasCustomPlaceholder = component !== 'power-select/placeholder'; - - if (isIE || hasCustomPlaceholder) { + if (isIE) { return null; } let select = this.get('select'); diff --git a/addon/templates/components/power-select-multiple/trigger.hbs b/addon/templates/components/power-select-multiple/trigger.hbs index 99648cc25..8f8f142db 100644 --- a/addon/templates/components/power-select-multiple/trigger.hbs +++ b/addon/templates/components/power-select-multiple/trigger.hbs @@ -16,7 +16,7 @@ {{/if}} {{else}} - {{#if (and placeholder (not searchEnabled))}} + {{#if (not searchEnabled)}} {{component placeholderComponent placeholder=placeholder}} {{/if}} {{/each}}