diff --git a/components/GroupedStatusView/components/FilterSection.tsx b/components/GroupedStatusView/components/FilterSection.tsx
index 5ca2523..d350fbd 100644
--- a/components/GroupedStatusView/components/FilterSection.tsx
+++ b/components/GroupedStatusView/components/FilterSection.tsx
@@ -1,5 +1,6 @@
import React from "react";
import { SearchFilter } from "@/components/atoms/SearchFilter";
+import { Input } from "@/components/atoms/Input";
interface FilterSectionProps {
searchFilter: string;
@@ -23,12 +24,12 @@ export const FilterSection = ({
onFilterChange={onSearchFilterChange}
/>
= ({
className="custom-status-preview"
style={{ borderLeftColor: status.color || "var(--text-muted)" }}
>
-
- onCustomStatusChange(
- index,
- "icon",
- e.target.value || "❓",
- )
+ onChange={(value) =>
+ onCustomStatusChange(index, "icon", value || "❓")
}
+ placeholder="🔥"
+ className="custom-status-icon-input"
/>
-
+ onChange={(value) =>
onCustomStatusChange(
index,
"name",
- e.target.value || "unnamed",
+ value || "unnamed",
)
}
+ placeholder="Status name"
+ className="custom-status-name-input"
style={{ color: status.color || "var(--text-normal)" }}
/>
-
- onCustomStatusChange(
- index,
- "description",
- e.target.value,
- )
+ onChange={(value) =>
+ onCustomStatusChange(index, "description", value)
}
+ placeholder="Description (optional)"
+ className="custom-status-description-input"
/>
-
- onCustomStatusChange(index, "color", e.target.value)
+ onChange={(value) =>
+ onCustomStatusChange(index, "color", value)
}
+ className="custom-status-color-input"
/>