Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Commit

Permalink
Add shouldAlternateRowColor
Browse files Browse the repository at this point in the history
  • Loading branch information
sophstad committed Jun 8, 2023
1 parent b47f138 commit 9560561
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/pages/container/EventsTable/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const EventsTable: React.VFC<{}> = () => {
</TableControlInnerRow>
</TableTitle>

<V11Adapter>
<V11Adapter shouldAlternateRowColor>
<Table
data-cy="container-events"
data={eventLogEntries}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/jobLogs/JobLogsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const JobLogsTable: React.VFC<JobLogsTableProps> = ({
const { sendEvent } = useJobLogsAnalytics();
return (
<>
<V11Adapter>
<V11Adapter shouldAlternateRowColor>
<Table
data={tests}
columns={
Expand Down
2 changes: 1 addition & 1 deletion src/pages/projectSettings/tabs/EventLogTab/EventLogTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const EventLogTab: React.VFC<TabProps> = ({
{events.map(({ user, timestamp, before, after }) => (
<EventLogCard key={`event_log_${timestamp}`} data-cy="event-log-card">
<EventLogHeader user={user} timestamp={timestamp} />
<V11Adapter>
<V11Adapter shouldAlternateRowColor>
<Table
data={getEventDiffLines(before, after)}
columns={
Expand Down

0 comments on commit 9560561

Please sign in to comment.