Fixed the length in the editor of labels of nodes.

This commit is contained in:
mdtrooper 2016-05-10 14:02:04 +02:00
parent 1a3b977224
commit 2e49a82938
1 changed files with 1 additions and 1 deletions

View File

@ -537,7 +537,7 @@ if (is_ajax ()) {
$table->data = array();
$table->data[0][0] = __('Label');
$table->data[0][1] = html_print_input_text('label',
$node_label, '', 12, 10, true);
$node_label, '', 12, 255, true);
$table->data[1][0] = __('Shape');
$table->data[1][1] = html_print_select(array(
'circle' => __('Circle'),