|
@@ -31,10 +31,10 @@ export default class Attachment extends React.Component {
|
|
|
|
|
|
|
|
let fileInUse = '';
|
|
let fileInUse = '';
|
|
|
if (this.props.inUse) {
|
|
if (this.props.inUse) {
|
|
|
- fileInUse = <span className="attachment-in-use label label-info">In Use</span>;
|
|
|
|
|
|
|
+ fileInUse = <span className="attachment-in-use badge badge-pill badge-info">In Use</span>;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- const fileType = <span className="attachment-filetype label label-default">{attachment.fileFormat}</span>;
|
|
|
|
|
|
|
+ const fileType = <span className="attachment-filetype badge badge-pill badge-secondary">{attachment.fileFormat}</span>;
|
|
|
|
|
|
|
|
const btnDownload = (this.props.isUserLoggedIn)
|
|
const btnDownload = (this.props.isUserLoggedIn)
|
|
|
? (
|
|
? (
|