Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Safari layout for favorites #97

Merged
merged 3 commits into from
Nov 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

- Add dashboard redirect option (#92)
- Update ESLint configuration and sort imports (#93)
- Update Safari layout for favorites (#97)

## 2.1.0 (2023-11-08)

Expand Down
1 change: 1 addition & 0 deletions src/components/Table/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ export const Table = <TableData extends object>({
[styles.sortableHeader]: header.column.getCanSort(),
})}
colSpan={header.colSpan}
style={{ width: header.column.columnDef.id === 'isFavorite' ? 48 : 'auto' }}
>
{flexRender(header.column.columnDef.header, header.getContext())}
{header.column.getCanSort() && (
Expand Down
2 changes: 2 additions & 0 deletions src/components/TableView/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export const Styles = (theme: GrafanaTheme2) => {
rowContent: css`
display: flex;
justify-content: stretch;
align-items: center;
`,
expandButton: css`
margin-right: ${theme.spacing(1)};
Expand All @@ -30,6 +31,7 @@ export const Styles = (theme: GrafanaTheme2) => {
align-items: center;
cursor: pointer;
flex: auto;
word-break: break-all;
`,
selectControl: css`
vertical-align: middle;
Expand Down
Loading