New client footer (#8954)

* Minor footer style fixes

* Added initial gem modal

* Fixed some heroe stuff.

* Preventing system member loading

* Added social delete
This commit is contained in:
Keith Holliday
2017-08-16 10:05:33 -06:00
committed by GitHub
parent 8614f11a31
commit 0bff37b600
10 changed files with 247 additions and 52 deletions

View File

@@ -166,7 +166,8 @@ export default {
this.messages.forEach(message => {
let uuid = message.uuid;
if (!this.cachedProfileData[uuid]) {
if (uuid && !this.cachedProfileData[uuid]) {
if (uuid === 'system') return;
promises.push(axios.get(`/api/v3/members/${uuid}`));
}
});