mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-01 19:15:52 +01:00
renaming GlobalConfiguration to Configuration
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
//@flow
|
//@flow
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { translate } from "react-i18next";
|
import { translate } from "react-i18next";
|
||||||
import { Title, GlobalConfiguration } from "@scm-manager/ui-components";
|
import { Title, Configuration } from "@scm-manager/ui-components";
|
||||||
import GitConfigurationForm from "./GitConfigurationForm";
|
import GitConfigurationForm from "./GitConfigurationForm";
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
@@ -22,7 +22,7 @@ class GitGlobalConfiguration extends React.Component<Props> {
|
|||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<Title title={t("scm-git-plugin.config.title")}/>
|
<Title title={t("scm-git-plugin.config.title")}/>
|
||||||
<GlobalConfiguration link={link} render={props => <GitConfigurationForm {...props} />}/>
|
<Configuration link={link} render={props => <GitConfigurationForm {...props} />}/>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
//@flow
|
//@flow
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { Title, GlobalConfiguration } from "@scm-manager/ui-components";
|
import { Title, Configuration } from "@scm-manager/ui-components";
|
||||||
import { translate } from "react-i18next";
|
import { translate } from "react-i18next";
|
||||||
import HgConfigurationForm from "./HgConfigurationForm";
|
import HgConfigurationForm from "./HgConfigurationForm";
|
||||||
|
|
||||||
@@ -18,7 +18,7 @@ class HgGlobalConfiguration extends React.Component<Props> {
|
|||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<Title title={t("scm-hg-plugin.config.title")}/>
|
<Title title={t("scm-hg-plugin.config.title")}/>
|
||||||
<GlobalConfiguration link={link} render={props => <HgConfigurationForm {...props} />}/>
|
<Configuration link={link} render={props => <HgConfigurationForm {...props} />}/>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
//@flow
|
//@flow
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { translate } from "react-i18next";
|
import { translate } from "react-i18next";
|
||||||
import { Title, GlobalConfiguration } from "@scm-manager/ui-components";
|
import { Title, Configuration } from "@scm-manager/ui-components";
|
||||||
import SvnConfigurationForm from "./SvnConfigurationForm";
|
import SvnConfigurationForm from "./SvnConfigurationForm";
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
@@ -18,7 +18,7 @@ class SvnGlobalConfiguration extends React.Component<Props> {
|
|||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<Title title={t("scm-svn-plugin.config.title")}/>
|
<Title title={t("scm-svn-plugin.config.title")}/>
|
||||||
<GlobalConfiguration link={link} render={props => <SvnConfigurationForm {...props} />}/>
|
<Configuration link={link} render={props => <SvnConfigurationForm {...props} />}/>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user