Merge branch 'max_dev' of Software_Engineering_I/greenvironment-frontend into master

master
Trivernis 5 years ago committed by Gitea
commit 40798b0869

@ -60,6 +60,7 @@ export class ProfileComponent implements OnInit {
this.userProfile = response;
// tslint:disable-next-line:max-line-length
this.userProfile.allowedToSendRequest = this.requestService.isAllowedToSendRequest(this.userProfile.userID, this.self);
console.log(this.userProfile.allowedToSendRequest);
this.ownProfile = this.userProfile.userID === this.self.userID;
this.rankname = this.levellist.getLevelName(this.userProfile.level);
} else {

@ -19,6 +19,9 @@ export class RequestService {
if (!self.loggedIn) {
return false;
} else {
if (userID === self.userID) {
return false;
}
for (const receiverID of self.sentRequestUserIDs) {
if (userID === receiverID ||
userID === self.userID) {

@ -1,5 +1,8 @@
@mixin gridPosition($rowStart, $rowEnd, $columnStart, $columnEnd)
grid-row-start: $rowStart
grid-row-end: $rowEnd
grid-column-start: $columnStart
grid-column-end: $columnEnd
::-webkit-scrollbar
width: 4px
::-webkit-scrollbar-track
background: #ddd
::-webkit-scrollbar-thumb
background: #666

Loading…
Cancel
Save