task list name overflow fix
This commit is contained in:
parent
af214d6b1b
commit
7567c2c0bc
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "gantt-task-react",
|
"name": "gantt-task-react",
|
||||||
"version": "0.1.4",
|
"version": "0.1.4.1",
|
||||||
"description": "Interactive Gantt Chart for React with TypeScript.",
|
"description": "Interactive Gantt Chart for React with TypeScript.",
|
||||||
"author": "MaTeMaTuK <maksym.vikarii@gmail.com>",
|
"author": "MaTeMaTuK <maksym.vikarii@gmail.com>",
|
||||||
"homepage": "https://github.com/MaTeMaTuK/gantt-task-react",
|
"homepage": "https://github.com/MaTeMaTuK/gantt-task-react",
|
||||||
|
|||||||
@ -16,4 +16,7 @@
|
|||||||
.taskListCell {
|
.taskListCell {
|
||||||
display: table-cell;
|
display: table-cell;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -37,6 +37,7 @@ export const TaskListTableDefault: React.FC<{
|
|||||||
minWidth: rowWidth,
|
minWidth: rowWidth,
|
||||||
maxWidth: rowWidth,
|
maxWidth: rowWidth,
|
||||||
}}
|
}}
|
||||||
|
title={t.name}
|
||||||
>
|
>
|
||||||
{t.name}
|
{t.name}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user