Skip to content

Commit

Permalink
Merge pull request #1570 from ever-co/bug/create-labels-bottom-sheet-…
Browse files Browse the repository at this point in the history
…input-text-colors

fixed the create label,size, status, priority bottom sheet input text…
  • Loading branch information
evereq authored Oct 16, 2023
2 parents 7ee5c20 + e2fa531 commit f934b70
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ const TaskLabelForm = ({
<Text
style={{
marginLeft: 10,
color: colors.primary,
color: labelIcon ? colors.primary : "#7B8089",
textTransform: "capitalize",
}}
>
Expand All @@ -135,7 +135,7 @@ const TaskLabelForm = ({
<Text
style={{
marginLeft: 10,
color: colors.primary,
color: labelIcon ? colors.primary : "#7B8089",
}}
>
{labelColor?.toUpperCase() ||
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ const TaskPriorityForm = ({
<Text
style={{
marginLeft: 10,
color: colors.primary,
color: priorityIcon ? colors.primary : "#7B8089",
textTransform: "capitalize",
}}
>
Expand All @@ -138,7 +138,7 @@ const TaskPriorityForm = ({
<Text
style={{
marginLeft: 10,
color: colors.primary,
color: priorityIcon ? colors.primary : "#7B8089",
}}
>
{priorityColor?.toUpperCase() ||
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ const TaskSizeForm = ({
<Text
style={{
marginLeft: 10,
color: colors.primary,
color: sizeIcon ? colors.primary : "#7B8089",
textTransform: "capitalize",
}}
>
Expand All @@ -135,7 +135,7 @@ const TaskSizeForm = ({
<Text
style={{
marginLeft: 10,
color: colors.primary,
color: sizeIcon ? colors.primary : "#7B8089",
}}
>
{sizeColor?.toUpperCase() ||
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ const TaskStatusForm = ({
<Text
style={{
marginLeft: 10,
color: colors.primary,
color: statusIcon ? colors.primary : "#7B8089",
textTransform: "capitalize",
}}
>
Expand All @@ -134,7 +134,7 @@ const TaskStatusForm = ({
<Text
style={{
marginLeft: 10,
color: colors.primary,
color: statusIcon ? colors.primary : "#7B8089",
}}
>
{statusColor?.toUpperCase() ||
Expand Down

0 comments on commit f934b70

Please sign in to comment.