This is an automated email from the ASF dual-hosted git repository.

clr pushed a commit to branch script-font
in repository https://gitbox.apache.org/repos/asf/whimsy.git

commit 01f7011d3e455025225e100662cd92adfd9c7193
Author: Craig L Russell <apache....@gmail.com>
AuthorDate: Fri Jun 10 13:59:22 2022 -0700

    Add script font to message
    
    Remove unsigned form from special action
---
 www/secretary/workbench/views/parts.js.rb | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/www/secretary/workbench/views/parts.js.rb 
b/www/secretary/workbench/views/parts.js.rb
index 4de0a741..54bda061 100644
--- a/www/secretary/workbench/views/parts.js.rb
+++ b/www/secretary/workbench/views/parts.js.rb
@@ -312,24 +312,18 @@ class Parts < Vue
                 _label do
                   _input type: 'checkbox', checked: @unsigned,
                   onClick: -> {@unsigned = !@unsigned}
-                  _span ' the document appears to be unsigned'
+                  _span ' unsigned'
                 end
               end
               _li do
                 _label do
                   _input type: 'checkbox', checked: @script_font,
                   onClick: -> {@script_font = !@script_font}
-                  _span ' a name typed in a script font is not a signature'
+                  _span ' script font'
                 end
               end
             end
 
-            _label do
-              _input type: 'radio', name: 'doctype', value: 'unsigned',
-                onClick: self.reject
-              _span 'unsigned form'
-            end
-
             _label do
               _input type: 'radio', name: 'doctype', value: 'resubmit',
                 onClick: self.reject

Reply via email to