# Important changes to Plugin Outlets for Ember 2.10

**URL:** https://meta.discourse.org/t/important-changes-to-plugin-outlets-for-ember-2-10/54136
**Category:** Development
**Created:** [2016年十二月12日 19:14 UTC](https://meta.discourse.org/t/important-changes-to-plugin-outlets-for-ember-2-10/54136 "2016-12-12T19:14:38Z")
**Posts on this page:** 1
**Showing post:** 9

<div class="post-metadata">

### Author: ![sam](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/sam/32/102149_2.png) [@sam](https://meta.discourse.org/u/sam)
#### Post date: [2016年十二月20日 03:08 UTC](https://meta.discourse.org/t/important-changes-to-plugin-outlets-for-ember-2-10/54136/9 "2016-12-20T03:08:21Z")

</div>

Just to expand a bit, looks like if you want to set a class on wrapping component you would use:

```plaintext
api.registerConnectorClass('user-profile-primary', 'my-connector', {
  setupComponent() {
    this.set('classNames', ['foo']);
  }
});

```

With the new changes I am seeing a wrapping `span` @eviltrout which is a bit of a blocker for me:

 ![](https://global.discourse-cdn.com/meta/original/3X/3/a/3ab08645e1b9558e50d8807042c551379c9acf0c.png)

Outlet is defined as:

```plaintext
 {{plugin-outlet name="user-activity-bottom"
                    connectorTagName='li'
                    args=(hash model=model)}}

```

Is there any way to remove the wrapping span?

---

_[View the full topic](https://meta.discourse.org/t/important-changes-to-plugin-outlets-for-ember-2-10/54136)._
