mirror of
https://github.com/makeplane/plane.git
synced 2026-02-11 08:39:05 -06:00
[WEB-3973] chore: space app state icon size #6995
This commit is contained in:
committed by
GitHub
parent
d10bb0b638
commit
f23a2f0780
@@ -3,6 +3,7 @@
|
||||
import React, { useState } from "react";
|
||||
import { observer } from "mobx-react";
|
||||
// ui
|
||||
import { EIconSize } from "@plane/constants";
|
||||
import { Loader, StateGroupIcon } from "@plane/ui";
|
||||
// components
|
||||
import { FilterHeader, FilterOption } from "@/components/issues/filters/helpers";
|
||||
@@ -51,7 +52,7 @@ export const FilterState: React.FC<Props> = observer((props) => {
|
||||
key={state.id}
|
||||
isChecked={appliedFilters?.includes(state.id) ? true : false}
|
||||
onClick={() => handleUpdate(state.id)}
|
||||
icon={<StateGroupIcon stateGroup={state.group} color={state.color} />}
|
||||
icon={<StateGroupIcon stateGroup={state.group} color={state.color} size={EIconSize.MD} />}
|
||||
title={state.name}
|
||||
/>
|
||||
))}
|
||||
|
||||
Reference in New Issue
Block a user