Fixing naming

This commit is contained in:
=Corey Hulen
2016-01-26 21:13:44 -05:00
parent 0dec26bb9f
commit 6fd0f651b9
2 changed files with 2 additions and 2 deletions

View File

@@ -137,7 +137,7 @@ type SessionStore interface {
PermanentDeleteSessionsByUser(teamId string) StoreChannel
UpdateLastActivityAt(sessionId string, time int64) StoreChannel
UpdateRoles(userId string, roles string) StoreChannel
UpdateDeviceId(sessionIdOrToken string, deviceId string) StoreChannel
UpdateDeviceId(id string, deviceId string) StoreChannel
}
type AuditStore interface {

View File

@@ -103,7 +103,7 @@ export default class ActivityLogModal extends React.Component {
} else if (currentSession.device_id.indexOf('apple:') === 0) {
devicePicture = 'fa fa-apple';
devicePlatform = 'iPhone Native App';
} else if (currentSession.device_id.indexOf('Android:') === 0) {
} else if (currentSession.device_id.indexOf('android:') === 0) {
devicePlatform = 'Android Native App';
devicePicture = 'fa fa-android';
} else if (currentSession.props.platform === 'Macintosh' ||