> ## Documentation Index
> Fetch the complete documentation index at: https://velt.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Aug 21 2024

# 2.0.39

### Bug Fixes

* \[**Comments**]: Fixed a css padding issue related to the action buttons in the comment dialog composer.

# 2.0.38

## Bug Fixes

* \[**Comments**]: Fixed an issue with the user-avatar component, ensuring it's consistently used across all the components.

# 2.0.37

### New Features

* \[**Comments**]: Added the ability to exclude specific location IDs from the comments sidebar. This provides more control over the displayed content.

<Tabs>
  <Tab title="React / Next.js">
    Using Props:

    ```jsx theme={null}
    <VeltCommentsSidebar excludeLocationIds={['location1', 'location2']} />
    ```

    Using API:

    ```jsx theme={null}
    const commentElement = client.getCommentElement();
    commentElement.excludeLocationIdsFromSidebar(['location1', 'location2']);
    ```
  </Tab>

  <Tab title="Other Frameworks">
    Using Props:

    ```html theme={null}
    <velt-comments-sidebar exclude-location-ids='["location1", "location2"]'></velt-comments-sidebar>
    ```

    Using API:

    ```javascript theme={null}
    const commentElement = Velt.getCommentElement();
    commentElement.excludeLocationIdsFromSidebar(['location1', 'location2']);
    ```
  </Tab>
</Tabs>

# 2.0.36

### Improvements

* \[**Comments**]: Applied `location` filters to the inline-comments-section component as well, following the same pattern like other comment components.
* \[**UI Customization**]: Removed `!important` declarations from some component CSS, improving overall style flexibility and reducing potential conflicts.

### Bug Fixes

* \[**Comments**]: Resolved an issue related to calculating comment pin positions, ensuring more accuracy and robustness.
