mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-30 03:16:25 +02:00
feat: implement ToggleGroup and Toggle components for improved label selection
- Introduced ToggleGroup and Toggle components to enhance the user interface for selecting multiple labels in the Linear issue creation and update forms. - Updated ApprovalCard component to utilize the new ToggleGroup for better label management. - Refactored label rendering to use Badge components for improved styling and user experience across various components.
This commit is contained in:
parent
15857ecfd6
commit
23c23c7528
6 changed files with 236 additions and 85 deletions
|
|
@ -298,7 +298,7 @@ function ApprovalCard({
|
|||
<SelectItem value="__none__">None</SelectItem>
|
||||
{availableParentPages.map((page) => (
|
||||
<SelectItem key={page.page_id} value={page.page_id}>
|
||||
📄 {page.title}
|
||||
{page.title}
|
||||
</SelectItem>
|
||||
))}
|
||||
</SelectContent>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue