This commit is contained in:
2020-04-29 00:39:15 +00:00
parent 649eeb6379
commit dfa5b9c651

View File

@@ -789,10 +789,9 @@ namespace AyaNova.PlugIn.V8
break; break;
default: default:
dt.type = util.AyaUiFieldDataType.Text; dt.type = util.AyaUiFieldDataType.Text;
break;
} }
dt.type = AyaUiFieldDataType.Text;
dtemplate.Add(dt); dtemplate.Add(dt);
} }
@@ -802,10 +801,9 @@ namespace AyaNova.PlugIn.V8
return ret; return ret;
//ok, were here because there *are* custom fields available //ok, were here because there *are* custom fields available
var a = await util.GetAsync("FormCustom/" + RavenCustomTranslationKeyObjectName);
var ctoken = util.CTokenFromResponse(a);
await util.PutAsync("FormCustom/" + RavenCustomTranslationKeyObjectName, d.ToString());
return ret; return ret;
} }