Этот коммит содержится в:
=Corey Hulen
2016-01-26 21:13:44 -05:00
родитель 0dec26bb9f
Коммит 6fd0f651b9
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

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

Просмотреть файл

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