mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-13 17:05:43 +01:00
create ui form for repository import
This commit is contained in:
@@ -46588,12 +46588,6 @@ exports[`Storyshots Forms|DropDown Add preselect if missing in options 1`] = `
|
|||||||
>
|
>
|
||||||
C
|
C
|
||||||
</option>
|
</option>
|
||||||
<option
|
|
||||||
selected={true}
|
|
||||||
value="D"
|
|
||||||
>
|
|
||||||
D
|
|
||||||
</option>
|
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
@@ -46625,6 +46619,12 @@ exports[`Storyshots Forms|DropDown Default 1`] = `
|
|||||||
>
|
>
|
||||||
es
|
es
|
||||||
</option>
|
</option>
|
||||||
|
<option
|
||||||
|
selected={true}
|
||||||
|
value="de"
|
||||||
|
>
|
||||||
|
de
|
||||||
|
</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
@@ -46656,12 +46656,6 @@ exports[`Storyshots Forms|DropDown With Translation 1`] = `
|
|||||||
>
|
>
|
||||||
The Meaning Of Liff
|
The Meaning Of Liff
|
||||||
</option>
|
</option>
|
||||||
<option
|
|
||||||
selected={true}
|
|
||||||
value="dirk"
|
|
||||||
>
|
|
||||||
dirk
|
|
||||||
</option>
|
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -45,7 +45,7 @@
|
|||||||
"createButton": "Repository hinzufügen"
|
"createButton": "Repository hinzufügen"
|
||||||
},
|
},
|
||||||
"create": {
|
"create": {
|
||||||
"title": "Repository erstellen",
|
"title": "Repository hinzufügen",
|
||||||
"subtitle": "Erstellen eines neuen Repository"
|
"subtitle": "Erstellen eines neuen Repository"
|
||||||
},
|
},
|
||||||
"branches": {
|
"branches": {
|
||||||
|
|||||||
@@ -45,7 +45,7 @@
|
|||||||
"createButton": "Add Repository"
|
"createButton": "Add Repository"
|
||||||
},
|
},
|
||||||
"create": {
|
"create": {
|
||||||
"title": "Create Repository",
|
"title": "Add Repository",
|
||||||
"subtitle": "Create a new repository"
|
"subtitle": "Create a new repository"
|
||||||
},
|
},
|
||||||
"branches": {
|
"branches": {
|
||||||
|
|||||||
@@ -81,7 +81,15 @@ class Create extends React.Component<Props> {
|
|||||||
};
|
};
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const { pageLoading, createLoading, repositoryTypes, namespaceStrategies, createRepo, error, indexResources } = this.props;
|
const {
|
||||||
|
pageLoading,
|
||||||
|
createLoading,
|
||||||
|
repositoryTypes,
|
||||||
|
namespaceStrategies,
|
||||||
|
createRepo,
|
||||||
|
error,
|
||||||
|
indexResources
|
||||||
|
} = this.props;
|
||||||
|
|
||||||
const { t, repoLink } = this.props;
|
const { t, repoLink } = this.props;
|
||||||
return (
|
return (
|
||||||
|
|||||||
Reference in New Issue
Block a user