renamed icon "save_notes" to "download"

This commit is contained in:
Anton Georgiev 2019-02-21 22:15:33 +00:00
parent f2bd5573f9
commit ef002a2fd1
2 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ class ChatDropdown extends PureComponent {
const { intl } = this.props; const { intl } = this.props;
const clearIcon = 'delete'; const clearIcon = 'delete';
const saveIcon = 'save_notes'; const saveIcon = 'download';
const copyIcon = 'copy'; const copyIcon = 'copy';
const user = ChatService.getUser(Auth.userID); const user = ChatService.getUser(Auth.userID);

View File

@ -515,7 +515,7 @@ class PresentationUploader extends Component {
label={formattedDownloadableLabel} label={formattedDownloadableLabel}
hideLabel hideLabel
size="sm" size="sm"
icon={item.isDownloadable ? 'save_notes' : 'download-off'} icon={item.isDownloadable ? 'download' : 'download-off'}
onClick={() => this.toggleDownloadable(item)} onClick={() => this.toggleDownloadable(item)}
/> />
<Checkbox <Checkbox