|
@@ -1,11 +1,8 @@
|
1
|
1
|
// @flow
|
2
|
2
|
|
3
|
|
-import React from 'react';
|
4
|
|
-
|
5
|
3
|
import { translate } from '../../../../base/i18n';
|
6
|
4
|
import { IconLiveStreaming } from '../../../../base/icons';
|
7
|
5
|
import { connect } from '../../../../base/redux';
|
8
|
|
-import { BetaTag } from '../../../../base/toolbox';
|
9
|
6
|
|
10
|
7
|
import AbstractLiveStreamButton, {
|
11
|
8
|
_mapStateToProps as _abstractMapStateToProps,
|
|
@@ -37,18 +34,6 @@ type Props = AbstractProps & {
|
37
|
34
|
class LiveStreamButton extends AbstractLiveStreamButton<Props> {
|
38
|
35
|
icon = IconLiveStreaming;
|
39
|
36
|
|
40
|
|
- /**
|
41
|
|
- * Helper function to be implemented by subclasses, which returns
|
42
|
|
- * a React Element to display (a beta tag) at the end of the button.
|
43
|
|
- *
|
44
|
|
- * @override
|
45
|
|
- * @protected
|
46
|
|
- * @returns {ReactElement}
|
47
|
|
- */
|
48
|
|
- _getElementAfter() {
|
49
|
|
- return <BetaTag />;
|
50
|
|
- }
|
51
|
|
-
|
52
|
37
|
/**
|
53
|
38
|
* Returns the tooltip that should be displayed when the button is disabled.
|
54
|
39
|
*
|