Update Profile.vue

pull/1136/head
Daniel Supernault 2019-04-17 23:58:47 -06:00
rodzic 6f72994a49
commit 0b13561ee8
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 5 dodań i 3 usunięć

Wyświetl plik

@ -732,9 +732,11 @@ export default {
'id[]': this.profileId
}
}).then(res => {
this.relationship = res.data[0];
if(res.data[0].blocking == true) {
this.warning = true;
if(res.length) {
this.relationship = res.data[0];
if(res.data[0].blocking == true) {
this.warning = true;
}
}
});
},