mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-11 16:05:44 +01:00
remove the repository directory from the config ui components
This commit is contained in:
@@ -8,7 +8,6 @@ type Configuration = {
|
||||
"hgBinary": string,
|
||||
"pythonBinary": string,
|
||||
"pythonPath"?: string,
|
||||
"repositoryDirectory": string,
|
||||
"encoding": string,
|
||||
"useOptimizedBytecode": boolean,
|
||||
"showRevisionInId": boolean,
|
||||
@@ -39,7 +38,7 @@ class HgConfigurationForm extends React.Component<Props, State> {
|
||||
|
||||
updateValidationStatus = () => {
|
||||
const requiredFields = [
|
||||
"hgBinary", "pythonBinary", "repositoryDirectory", "encoding"
|
||||
"hgBinary", "pythonBinary", "encoding"
|
||||
];
|
||||
|
||||
const validationErrors = [];
|
||||
@@ -99,7 +98,6 @@ class HgConfigurationForm extends React.Component<Props, State> {
|
||||
{this.inputField("hgBinary")}
|
||||
{this.inputField("pythonBinary")}
|
||||
{this.inputField("pythonPath")}
|
||||
{this.inputField("repositoryDirectory")}
|
||||
{this.inputField("encoding")}
|
||||
{this.checkbox("useOptimizedBytecode")}
|
||||
{this.checkbox("showRevisionInId")}
|
||||
|
||||
Reference in New Issue
Block a user