diff options
-rw-r--r-- | httemplate/edit/part_tag.html | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/httemplate/edit/part_tag.html b/httemplate/edit/part_tag.html index 319063fea..87c77fa98 100644 --- a/httemplate/edit/part_tag.html +++ b/httemplate/edit/part_tag.html @@ -1,11 +1,12 @@ <% include( 'elements/edit.html', 'table' => 'part_tag', 'name_singular' => 'tag', - 'fields' => [ 'tagname', - { field=>'disabled', type=>'checkbox', value=>'Y' }, - 'tagdesc', - $tagcolor, - ], + 'fields' => [ + { field=>'tagname', type=>'text', size=>10 }, + { field=>'disabled', type=>'checkbox', value=>'Y' }, + { field=>'tagdesc', type=>'text', size=>60 }, + $tagcolor, + ], 'labels' => { 'tagnum' => 'Tag #', 'tagname' => 'Tag', 'tagdesc' => 'Message', |