Compare commits
2 Commits
cce2c9cfaa
...
v2.0.7
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9d2992b722 | ||
|
|
1ddc0feccd |
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "app-ts",
|
"name": "app-ts",
|
||||||
"version": "2.0.6",
|
"version": "2.0.7",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "dist/server.js",
|
"main": "dist/server.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -620,7 +620,6 @@ export default function PlanGrid({
|
|||||||
c.category,
|
c.category,
|
||||||
catMap,
|
catMap,
|
||||||
)}
|
)}
|
||||||
showNote={cellArr.length === 1}
|
|
||||||
/>
|
/>
|
||||||
</Box>
|
</Box>
|
||||||
))}
|
))}
|
||||||
|
|||||||
@@ -6,7 +6,6 @@ interface Props {
|
|||||||
project: Project | null;
|
project: Project | null;
|
||||||
readonly?: boolean;
|
readonly?: boolean;
|
||||||
categoryLabel: string;
|
categoryLabel: string;
|
||||||
showNote?: boolean;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function PlanRangeChips({
|
export default function PlanRangeChips({
|
||||||
@@ -14,7 +13,6 @@ export default function PlanRangeChips({
|
|||||||
project,
|
project,
|
||||||
readonly,
|
readonly,
|
||||||
categoryLabel,
|
categoryLabel,
|
||||||
showNote = true,
|
|
||||||
}: Props) {
|
}: Props) {
|
||||||
void readonly;
|
void readonly;
|
||||||
if (!cell) return null;
|
if (!cell) return null;
|
||||||
@@ -38,9 +36,7 @@ export default function PlanRangeChips({
|
|||||||
</span>
|
</span>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
{showNote && cell.note && (
|
{cell.note && <div className="plan-cell-note">{cell.note}</div>}
|
||||||
<div className="plan-cell-note">{cell.note}</div>
|
|
||||||
)}
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user