--- lib/Arh/View/Units.pm 2007/11/30 16:46:39 15 +++ lib/Arh/View/Units.pm 2007/11/30 17:50:34 20 @@ -39,13 +39,18 @@ render_param( $update => $f, %opt ); } }; - hyperlink( - label => _('Update'), - onclick => { - submit => $update, - refresh_self => 1, - }, - ) if $can_write; + if ( $can_write ) { + div { + { class is 'submit_button' }; + hyperlink( + label => _('Update'), + onclick => { + submit => $update, + refresh_self => 1, + }, + ) + }; + } }; hr {}; };