This commit is contained in:
Daniel Supernault 2019-06-18 21:25:53 -06:00
parent 5565aa692f
commit 79e9337f94
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

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