Skip to content

Commit acffa8f

Browse files
committed
Fix issue with datepicker not displaying on all date fields
1 parent 9f3a05a commit acffa8f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

public/js/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1405,11 +1405,11 @@ jitterbug = {
14051405
},
14061406

14071407
initPopovers: function() {
1408-
$('[data-toggle="popover"]').popover();
1408+
$('[data-bs-toggle="popover"]').popover();
14091409
},
14101410

14111411
initDatepicker: function() {
1412-
flatpickr('#detail .input-group.date', {
1412+
flatpickr('.input-group.date', {
14131413
dateFormat: 'Y-m-d',
14141414
wrap: true
14151415
});

0 commit comments

Comments
 (0)