glideapps / glideapps/glide-data-grid

[bug] a problem with theme overide for trailing + freeze rows

Open
#1,010 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
TypeScript
Stars
5.3k
Forks
428
PR merge metrics
No merged PRs in 30d

Description

Hello

I have this set of props for the Grid
```tsx
trailingRowOptions={{
hint: "Add..",
sticky: true,
tint: true,
}}
freezeTrailingRows={data.length > 0 ? 1 : 0}
getRowThemeOverride={(rowI) => {
if (rowI === data.length) {
return {
bgCell: "#efeff1",
};
}
return undefined;
}}
```

As you can see in the attached screenshot, the background color from the small row divider overlaps the text in the cells in the frozen row.

Maybe I can disable this row divider?

![Знімок екрана 2024-12-08 о 18 58 37](https://github.com/user-attachments/assets/5c61dfc2-b9c0-41ed-adf6-c9328fada4dd)

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.