# [2021-08-06] Nylas updates

Source: https://developer.nylas.com/docs/new/v2-release-notes/2021-08-06-nylas-updates/

## Components

- Components are now available in our EU and Canada dashboards.
- Message Tracking is now supported.

  ```js
  tracking = {
    links: true,
    opens: true,
    thread_replies: true,
    payload: "Tracking enabled",
  };

  document.querySelector("nylas-composer").tracking = tracking;
  ```

## Scheduler

- The Scheduler is now available in the EU.
- You can change the [modal title](/docs/v2/scheduler/customization/schedule-editor/#custom-title) in the Scheduler Editor.

  ```js
  style: {
    tintColor: '#FF0000',
    backgroundColor: '#111111',
    modalTitle: "Select an Event"
  }
  ```

  ![Modal title in the Scheduler Editor](/_images/release-notes-changelogs/2021-08-06-scheduler.png "Modal title")

## Documentation

Learn [how deleted events work](/docs/v2/calendar/deleted-events/).

## API

### Bug fixes

- Previously, single day events extracted from .ics files, returned as multi-day events. Now when returning those events, the when objects reflect the correct information.

  **New Behavior**

  ```json
  "when": {
    "date": "2021-06-06",
    "object": "date"
  }
  ```

  **Previous**

  ```json
  when: {
    end_date: '2021-06-12',
    object: 'datespan',
    start_date: '2021-06-12'
  }
  ```

- We fixed a bug where Google contacts were not being synced back to the provider.

## Dashboard

### Bug fixes

- We fixed a bug where email addresses that contained periods did not return.