Skip to content

Commit

Permalink
fix(patch-error): Avoid PATCH on a non-existent value (#27884)
Browse files Browse the repository at this point in the history
  • Loading branch information
phixMe authored Jan 24, 2025
1 parent 8b13d86 commit 789d711
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ export const SchemaTable = ({ schemas, isLoading }: SchemaTableProps): JSX.Eleme
return (
<LemonSelect
className="my-1"
disabled={!schema.should_sync}
value={schema.sync_frequency || '6hour'}
onChange={(value) =>
updateSchema({ ...schema, sync_frequency: value as DataWarehouseSyncInterval })
Expand Down

0 comments on commit 789d711

Please sign in to comment.