(type, message)
| 31 | } |
| 32 | |
| 33 | openNotification(type, message) { |
| 34 | let that = this; |
| 35 | notification[type]({ |
| 36 | message: message, |
| 37 | onClose: () => { |
| 38 | that.props.clear_msg(); |
| 39 | } |
| 40 | }); |
| 41 | that.props.clear_msg(); |
| 42 | }; |
| 43 | |
| 44 | render() { |
| 45 | let {isFetching} = this.props; |