Merge with 2.0.0-m3

This commit is contained in:
René Pfeuffer
2018-09-13 08:17:51 +02:00
238 changed files with 39409 additions and 2064 deletions

View File

@@ -1,9 +1,9 @@
//@flow
import React from 'react';
import React from "react";
import type { Repository } from "@scm-manager/ui-types";
// TODO flow types ???
type Props = {
repository: Object
repository: Repository
}
class ProtocolInformation extends React.Component<Props> {

View File

@@ -1,5 +1,6 @@
//@flow
import React from 'react';
import React from "react";
import { Image } from "@scm-manager/ui-components";
type Props = {
};
@@ -7,8 +8,7 @@ type Props = {
class SvnAvatar extends React.Component<Props> {
render() {
// TODO we have to use Image from ui-components
return <img src="/scm/images/svn-logo.gif" alt="Subversion Logo" />;
return <Image src="/images/svn-logo.gif" alt="Subversion Logo" />;
}
}

View File

@@ -1,6 +1,7 @@
// @flow
import { binder } from "@scm-manager/ui-extensions";
import ProtocolInformation from './ProtocolInformation';
import SvnAvatar from './SvnAvatar';
import ProtocolInformation from "./ProtocolInformation";
import SvnAvatar from "./SvnAvatar";
const svnPredicate = (props: Object) => {
return props.repository && props.repository.type === "svn";