Commit 908b2246 by Chamath

S53341989 - Show Incomplete is incorrect.

Incomplete application message popup logic added.
parent 285d67ba
...@@ -78,6 +78,16 @@ export class AdminPortalLayoutComponent implements OnInit, OnDestroy { ...@@ -78,6 +78,16 @@ export class AdminPortalLayoutComponent implements OnInit, OnDestroy {
// Show Chat bubble if message service allows // Show Chat bubble if message service allows
this.showBubble = true; this.showBubble = true;
} }
} else if (message.name === 'HiringTeamChatIC') {
if(!message.message) {
this.jobApplicationID = null;
this.showChat = false;
} else {
const msg = JSON.parse(message.message);
this.jobApplicationID = msg.JobApplicationID;
// Show Chat bubble if message service allows
this.showChat = true;
}
} else if (message.name === 'DisableCreateJobButton') { } else if (message.name === 'DisableCreateJobButton') {
if(message.message != this.createJobDisabled) { if(message.message != this.createJobDisabled) {
this.createJobDisabled = message.message; this.createJobDisabled = message.message;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment