diff --git a/src/components/library/editor/drawer/FilterDrawer.stories.tsx b/src/components/library/editor/drawer/FilterDrawer.stories.tsx index 4d8594b..49667d4 100644 --- a/src/components/library/editor/drawer/FilterDrawer.stories.tsx +++ b/src/components/library/editor/drawer/FilterDrawer.stories.tsx @@ -18,6 +18,9 @@ const commonProps = { contrast: 1, saturation: 1, pixelate: 0, + red: 0, + green: 0, + blue: 0, onFilterChange: () => console.log("onFilterChange"), onClose: () => console.log("onClose"), } satisfies ComponentProps; diff --git a/src/components/library/editor/drawer/FilterDrawer.tsx b/src/components/library/editor/drawer/FilterDrawer.tsx index aa14938..8cb0257 100644 --- a/src/components/library/editor/drawer/FilterDrawer.tsx +++ b/src/components/library/editor/drawer/FilterDrawer.tsx @@ -54,10 +54,10 @@ export function FilterDrawer({
  • - + onFilterChange({ brightness: Number(e.target.value) })} - onDoubleClick={() => onFilterChange({ brightness: 1 })} className="range range-primary" /> - + onFilterChange({ contrast: Number(e.target.value) })} className="range range-secondary" /> - +
  • - RGB +
  • - + onFilterChange({ blur: Number(e.target.value) })} className="range range-warning" /> - +