|
@@ -87,7 +87,7 @@
|
|
|
<div class="bg-secondary text-white font-weight-bold text-center py-1" v-if="items.length === 0">
|
|
|
No patients in the queue
|
|
|
</div>
|
|
|
- <div class="d-flex align-items-center mt-1">
|
|
|
+ <div v-if="items && items.length" class="d-flex align-items-center my-1">
|
|
|
<div v-for="item in items">
|
|
|
<div class="queue-item border border-primary rounded mx-1" :title="item.name">
|
|
|
<div class="patient-avatar mb-1 text-dark">@{{ item.initials }}</div>
|
|
@@ -565,7 +565,7 @@
|
|
|
// open patient in LHS
|
|
|
window.top.openInLHS('/patients/view/' + _uid);
|
|
|
// open patient video in RHS
|
|
|
- openInRHS('/pro/meet/' + _uid);
|
|
|
+ window.top.openInRHS('/pro/meet/' + _uid);
|
|
|
}
|
|
|
else {
|
|
|
if (_data.message) {
|