mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
fix providers not visible for secretaries
This commit is contained in:
parent
227612565d
commit
b87f7aa1b3
1 changed files with 1 additions and 1 deletions
|
@ -360,7 +360,7 @@ App.Components.AppointmentsModal = (function () {
|
||||||
|
|
||||||
if (
|
if (
|
||||||
vars('role_slug') === App.Layouts.Backend.DB_SLUG_SECRETARY &&
|
vars('role_slug') === App.Layouts.Backend.DB_SLUG_SECRETARY &&
|
||||||
vars('secretary_providers').indexOf(provider.id) === -1
|
vars('secretary_providers').indexOf(Number(provider.id)) === -1
|
||||||
) {
|
) {
|
||||||
return; // continue
|
return; // continue
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue