Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
benjackwhite committed Sep 28, 2023
1 parent a8a9525 commit e859cf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/scenes/notebooks/Notebook/NotebookHistory.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function NotebookHistoryList({ onItemClick }: { onItemClick: (logItem: ActivityL
return (
<div className="flex flex-col flex-1 overflow-hidden">
<ul className="flex-1 overflow-y-auto p-2 space-y-px">
{activityWithChangedContent?.map((logItem: ActivityLogItem, i) => {
{activityWithChangedContent?.map((logItem: ActivityLogItems) => {
const name = logItem.user.is_system ? 'System' : logItem.user.first_name
return (
<li key={logItem.created_at}>
Expand Down

0 comments on commit e859cf3

Please sign in to comment.