mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-09 17:42:21 +03:00
small fix for the display of the delete button in table view
it will turn out the following class "mr-2 d-none" instead of "mr-2-d-none" which results displaying the delete button if -> GlobalVariables.user.privileges.appointments.delete = false
This commit is contained in:
parent
1700605b7b
commit
d51ca87f1b
1 changed files with 1 additions and 1 deletions
|
@ -1338,7 +1338,7 @@ window.BackendCalendarTableView = window.BackendCalendarTableView || {};
|
||||||
]
|
]
|
||||||
}),
|
}),
|
||||||
$('<button/>', {
|
$('<button/>', {
|
||||||
'class': 'delete-popover btn btn-outline-secondary mr-2' + displayDelete,
|
'class': 'delete-popover btn btn-outline-secondary mr-2 ' + displayDelete,
|
||||||
'html': [
|
'html': [
|
||||||
$('<i/>', {
|
$('<i/>', {
|
||||||
'class': 'fas fa-trash-alt mr-2'
|
'class': 'fas fa-trash-alt mr-2'
|
||||||
|
|
Loading…
Reference in a new issue