task list name overflow fix

This commit is contained in:
unknown 2020-08-25 22:07:04 +03:00
parent af214d6b1b
commit 7567c2c0bc
3 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{
"name": "gantt-task-react",
"version": "0.1.4",
"version": "0.1.4.1",
"description": "Interactive Gantt Chart for React with TypeScript.",
"author": "MaTeMaTuK <maksym.vikarii@gmail.com>",
"homepage": "https://github.com/MaTeMaTuK/gantt-task-react",

View File

@ -16,4 +16,7 @@
.taskListCell {
display: table-cell;
vertical-align: middle;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

View File

@ -37,6 +37,7 @@ export const TaskListTableDefault: React.FC<{
minWidth: rowWidth,
maxWidth: rowWidth,
}}
title={t.name}
>
&nbsp;{t.name}
</div>