Skip to content

Commit 4865c90

Browse files
committed
styling and bug fixes
1 parent ad91061 commit 4865c90

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/projects/detail/components/SimplePlan/components/MilestoneRow/MilestoneRow.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ function MilestoneRow({
299299
</tr>
300300
) : (
301301
<tr styleName="milestone-row">
302-
{isUpdatable ? <td styleName="expand" onClick={() => onExpand(!isExpand, milestone)}>{isExpand ? <IconClose />: <IconExpand />}</td>: null}
302+
{isUpdatable ? <td styleName="expand" onClick={() => onExpand(!isExpand, milestone)}>{isExpand ? <IconClose />: <IconExpand />}</td>: <td></td>}
303303
{isEditingMilestone ? <td/> : <td styleName="checkbox">
304304
<TCFormFields.Checkbox
305305
name={`select-${rowId}`}

src/projects/detail/components/SimplePlan/components/MilestoneRow/MilestoneRow.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,8 @@
159159
}
160160

161161
svg {
162-
width: 14px;
163-
height: 14px;
162+
width: 24px;
163+
height: 24px;
164164

165165
path {
166166
fill: currentColor

0 commit comments

Comments
 (0)