[ARVADOS-WORKBENCH2] updated: 1.1.4-292-ge2c0ef9
Git user
git at public.curoverse.com
Tue Jul 24 04:43:52 EDT 2018
Summary of changes:
src/components/snackbar/snackbar.tsx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
via e2c0ef92fecbdb5443f7592d112cd5cf2bca751c (commit)
from 96c03a921fe8e8e3c5de4333ea7d1456297f2681 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit e2c0ef92fecbdb5443f7592d112cd5cf2bca751c
Author: Pawel Kowalczyk <pawel.kowalczyk at contractors.roche.com>
Date: Tue Jul 24 10:43:39 2018 +0200
export without default
Feature #13782
Arvados-DCO-1.1-Signed-off-by: Pawel Kowalczyk <pawel.kowalczyk at contractors.roche.com>
diff --git a/src/components/snackbar/snackbar.tsx b/src/components/snackbar/snackbar.tsx
index a452f83..a872a9b 100644
--- a/src/components/snackbar/snackbar.tsx
+++ b/src/components/snackbar/snackbar.tsx
@@ -4,7 +4,7 @@
import * as React from 'react';
import Button from '@material-ui/core/Button';
-import Snackbar from '@material-ui/core/Snackbar';
+import SnackbarMaterial from '@material-ui/core/Snackbar';
type SnackbarProps = {
message: string
@@ -14,7 +14,7 @@ interface SnackbarState {
open: boolean;
}
-export default class SnackbarComponent extends React.Component<SnackbarProps> {
+export class Snackbar extends React.Component<SnackbarProps> {
state: SnackbarState = {
open: false
};
@@ -31,7 +31,7 @@ export default class SnackbarComponent extends React.Component<SnackbarProps> {
<Button onClick={this.handleClick}>
CLICK
</Button>
- <Snackbar
+ <SnackbarMaterial
open={open}
autoHideDuration={AUTO_HIDE_DURATION}
message={<span id="message-id">{message}</span>}
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list