Fix workflows table layout

Also limit length of workflow name and type by 255 symbols.

Closes-Bug: #1663269

Change-Id: Ia5a85164a93dd36332438ff6cd78d5387359ce5d
This commit is contained in:
Julia Aranovich 2017-02-10 11:23:08 +04:00
parent 44fa844e61
commit 497b911099
2 changed files with 3 additions and 2 deletions

View File

@ -5737,6 +5737,7 @@ input[type=range] {
}
td {
width: 40%;
.break-word;
&:nth-child(3), &:nth-child(4) { // actions columns
width: 10%;
text-align: center;

View File

@ -1226,8 +1226,8 @@ export var UploadGraphDialog = React.createClass({
return (
<div className='forms-box upload-graph-form'>
<Input {...composeInputProps('name')} />
<Input {...composeInputProps('type')} />
<Input {...composeInputProps('name')} maxLength='255' />
<Input {...composeInputProps('type')} maxLength='255' />
<Input
{...composeInputProps('tasks')}
type='file'