diff --git a/app/active_calls/active_calls.php b/app/active_calls/active_calls.php
index 52c874b193..b251039504 100644
--- a/app/active_calls/active_calls.php
+++ b/app/active_calls/active_calls.php
@@ -849,6 +849,7 @@ echo "\n";
//set values
const uuid = call.unique_id;
+ const row = document.getElementById(uuid);
const caller_channel_name = call?.caller_channel_name.split('/')[1] ?? '';
@@ -878,6 +879,10 @@ echo "\n";
update_call_element(`caller_context_${uuid}`, caller_context);
+ //check if the context changes to this domain
+ if (caller_context === '= $_SESSION['domain_name'] ?>') {
+ row.style.display = 'table-row';
+ }
update_call_element(`caller_id_name_${uuid}`, caller_caller_id_name);
update_call_element(`caller_id_number_${uuid}`, caller_caller_id_number);