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