Grid View not working due to "on edit" action that I did not add

Grid View not working due to "on edit" action that I did not add

According to this thread, https://help.zoho.com/portal/en/community/topic/changing-the-display-type-of-view-to-grid-does-not-work, you can't have a Grid view if there is an "on edit" action. Fair enough. 

I have a form that I did not add any "on edit" actions to, but when I go to the Form Definition (With Action) area, it shows the following: 

  1.     actions
  2.     {
  3.         on add
  4.         {
  5.             submit
  6.             (
  7.                 type  =  submit
  8.                 displayname  =  "Submit"
  9.                 PreSubmit = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><preoncommit><openurl/><sendmail><language><![CDATA[English]]></language><enabled><![CDATA[false]]></enabled><conttype><![CDATA[HTML]]></conttype></sendmail></preoncommit>\n"
  10.             )
  11.             reset
  12.             (
  13.                 type  =  reset
  14.                 displayname  =  "Reset"
  15.             )
  16.         }
  17.         on edit
  18.         {
  19.             update
  20.             (
  21.                 type  =  submit
  22.                 displayname  =  "Update"
  23.             )
  24.             cancel
  25.             (
  26.                 type  =  cancel
  27.                 displayname  =  "Cancel"
  28.             )
  29.         }
  30.     }
It appears that this functionality is related to the buttons on the forms... but I did not add this code. Furthermore, when I try to delete the "on edit" action and hit "Save Script," all acts fine. Then, when I check my View, it still doesn't give the Grid view option. So I go back into the Form Definition, and sure enough, the code has been added back in. 

If the "on edit" functionality effectively disables one of the most powerful View options, how do we stop the application from adding it in automatically??