# v2.6.2 Inbox popover position control - Novu Changelog

> Novu changelog: v2.6.2 Inbox popover position control. Learn about the latest updates, features, and improvements to the Novu notification infrastructur...

Canonical: https://novu.co/changelog/v262-inbox-popover-position-control/

Markdown: https://novu.co/changelog/v262-inbox-popover-position-control.md

Last updated: 2024-11-27T14:19:14.540Z

Published: 2024-11-27T14:19:14.540Z

You can now control the position of the popover content by specifying the `placement` and `placementOffset` props for the @novu/react component.

```
<Inbox
  applicationIdentifier="Your App ID"
  subscriberId="Subscriber ID"
  placement="bottom-end"
/>
```

The package supports the following placements:

```
type Placement = "bottom-end" | "bottom-start" | "left-end" | "left-start" | "right-end" | "right-start" | "top-end" | "top-start" | "bottom" | "left" | "right" | "top";
```

For further adjusting the placement the `placementOffset` could be used:

```
<Inbox
  applicationIdentifier="Your App ID"
  subscriberId="Subscriber ID"
  placement="bottom-end"
  placementOffset={10}
/>
```

## Fixes

- Truncate workflow name and center empty notifications text in preference component
