fixed integration of mercurial config changes of 1.x

This commit is contained in:
Sebastian Sdorra
2019-01-29 14:00:11 +01:00
parent 588e248863
commit d820605186
4 changed files with 14 additions and 0 deletions

View File

@@ -11,6 +11,8 @@ type Configuration = {
"encoding": string,
"useOptimizedBytecode": boolean,
"showRevisionInId": boolean,
"disableHookSSLValidation": boolean,
"enableHttpPostArgs": boolean,
"disabled": boolean,
"_links": Links
};
@@ -101,6 +103,8 @@ class HgConfigurationForm extends React.Component<Props, State> {
{this.inputField("encoding")}
{this.checkbox("useOptimizedBytecode")}
{this.checkbox("showRevisionInId")}
{this.checkbox("disableHookSSLValidation")}
{this.checkbox("enableHttpPostArgs")}
{this.checkbox("disabled")}
</>
);