Fix react warnings and part of backstage (#4706)

Этот коммит содержится в:
enahum
2016-12-05 10:19:12 -03:00
коммит произвёл Harrison Healey
родитель 05783664cd
Коммит 145876681f
46 изменённых файлов: 142 добавлений и 149 удалений

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

@@ -137,15 +137,6 @@ class IntegrationStore extends EventEmitter {
this.setCommands(teamId, commands);
}
editCommand(command) {
const teamId = command.team_id;
const commands = this.getCommands(teamId);
commands.push(command);
this.setCommands(teamId, commands);
}
updateCommand(command) {
const teamId = command.team_id;
const commands = this.getCommands(teamId);

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

@@ -52,7 +52,7 @@ class UserStoreClass extends EventEmitter {
this.statuses = {};
this.sessions = {};
this.audits = {};
this.audits = [];
this.currentUserId = '';
this.noAccounts = false;
}