Skip to content

Commit

Permalink
Correct border in Label Tag Button
Browse files Browse the repository at this point in the history
  • Loading branch information
sv7000 committed Feb 1, 2025
1 parent 5650129 commit b592ecb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/web/lib/features/auth-user-task-input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export function AuthUserTaskInput({ className }: IClassName) {
task={activeTeamTask}
className="lg:max-w-[170px] grow text-xs"
forDetails={false}
taskStatusClassName="dark:bg-[#1B1D22] dark:border dark:border-[#FFFFFF33] text-xs"
taskStatusClassName="dark:bg-[#1B1D22] text-xs dark:border dark:border-[#fff]"
/>
{activeTeamTask && (
<ProjectDropDown
Expand Down
2 changes: 1 addition & 1 deletion apps/web/lib/features/task/task-input-kanban.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ function TaskCard({
<TaskLabels
className="lg:min-w-[170px] text-xs"
forDetails={false}
taskStatusClassName="dark:bg-[#1B1D22] dark:border dark:border-[#FFFFFF33] h-7 text-xs"
taskStatusClassName="dark:bg-[#1B1D22] dark:border dark:border-[#FFFFFF33] h-11 text-xs"
onValueChange={(_: any, values: string[] | undefined) => {
taskLabelsData.filter((tag) =>
tag.name ? values?.includes(tag.name) : false
Expand Down

0 comments on commit b592ecb

Please sign in to comment.