Skip to content

Commit a659106

Browse files
committed
fix types and schema
1 parent f59a12d commit a659106

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

frontend/src/lib/lemon-ui/LemonTable/TableRow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export interface TableRowProps<T extends Record<string, any>> {
1414
rowKeyDetermined: string | number
1515
rowClassNameDetermined: string | null | undefined
1616
rowRibbonColorDetermined: string | null | undefined
17-
rowStatusDetermined: 'highlighted' | 'hightlight-new' | null | undefined
17+
rowStatusDetermined: 'highlighted' | 'highlight-new' | null | undefined
1818
columnGroups: LemonTableColumnGroup<T>[]
1919
onRow: ((record: T, index: number) => Omit<HTMLProps<HTMLTableRowElement>, 'key'>) | undefined
2020
expandable: ExpandableConfig<T> | undefined

frontend/src/queries/schema.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17637,6 +17637,9 @@
1763717637
"version": {
1763817638
"description": "version of the node, used for schema migrations",
1763917639
"type": "number"
17640+
},
17641+
"liveLogsCheckpoint": {
17642+
"type": "string"
1764017643
}
1764117644
},
1764217645
"required": ["dateRange", "filterGroup", "kind", "serviceNames", "severityLevels"],

products/logs/frontend/logsLogic.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { syncSearchParams, updateSearchParams } from '@posthog/products-error-tr
99

1010
import api from 'lib/api'
1111
import { DEFAULT_UNIVERSAL_GROUP_FILTER } from 'lib/components/UniversalFilters/universalFiltersLogic'
12-
import { Dayjs, dayjs } from 'lib/dayjs'
12+
import { dayjs } from 'lib/dayjs'
1313
import { tabAwareActionToUrl } from 'lib/logic/scenes/tabAwareActionToUrl'
1414
import { tabAwareScene } from 'lib/logic/scenes/tabAwareScene'
1515
import { tabAwareUrlToAction } from 'lib/logic/scenes/tabAwareUrlToAction'
@@ -396,7 +396,6 @@ export const logsLogic = kea<logsLogicType>([
396396
clearLogs: () => true,
397397
},
398398
],
399-
400399
}),
401400

402401
loaders(({ values, actions }) => ({

0 commit comments

Comments
 (0)