change: use 'file' icon for files in search suggestions

This commit is contained in:
Sean Yesmunt 2019-01-23 12:18:24 -05:00
parent 82e041c197
commit 919bd4c934
2 changed files with 2 additions and 1 deletions

View file

@ -43,7 +43,7 @@ class WunderBar extends React.PureComponent<Props> {
getSuggestionIcon = (type: string) => {
switch (type) {
case 'file':
return ICONS.LOCAL;
return ICONS.FILE;
case 'channel':
return ICONS.CHANNEL;
default:

View file

@ -39,3 +39,4 @@ export const TWITTER = 'Twitter';
export const WALLET = 'CreditCard';
export const SETTINGS = 'Settings';
export const INVITE = 'Users';
export const FILE = 'File';