|
|
@@ -1,6 +1,6 @@
|
|
1
|
1
|
/* @flow */
|
|
2
|
2
|
|
|
3
|
|
-import AKButton from '@atlaskit/button';
|
|
|
3
|
+import Button from '@atlaskit/button';
|
|
4
|
4
|
import PropTypes from 'prop-types';
|
|
5
|
5
|
import React, { Component } from 'react';
|
|
6
|
6
|
|
|
|
@@ -64,11 +64,11 @@ class InlineDialogFailure extends Component<*> {
|
|
64
|
64
|
{ t('inlineDialogFailure.msg') }
|
|
65
|
65
|
</div>
|
|
66
|
66
|
{ supportLinkElem }
|
|
67
|
|
- <AKButton
|
|
|
67
|
+ <Button
|
|
68
|
68
|
className = 'inline-dialog-error-button'
|
|
69
|
69
|
onClick = { this.props.onRetry } >
|
|
70
|
70
|
{ t('inlineDialogFailure.retry') }
|
|
71
|
|
- </AKButton>
|
|
|
71
|
+ </Button>
|
|
72
|
72
|
</div>
|
|
73
|
73
|
);
|
|
74
|
74
|
}
|