2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-10 17:20:32 +00:00

Bug/calender (#1558)

* fixes calendar not rendering when toggling view

* same for po

* and builds
This commit is contained in:
Matthias Mair
2021-05-06 16:11:08 +02:00
committed by GitHub
parent 39d4129157
commit 3a1c233bff
3 changed files with 7 additions and 1 deletions

View File

@ -158,6 +158,8 @@ $('#view-calendar').click(function() {
$("#build-order-calendar").show(); $("#build-order-calendar").show();
$("#view-list").show(); $("#view-list").show();
calendar.render();
}); });
$("#view-list").click(function() { $("#view-list").click(function() {

View File

@ -146,6 +146,8 @@ $('#view-calendar').click(function() {
$("#purchase-order-calendar").show(); $("#purchase-order-calendar").show();
$("#view-list").show(); $("#view-list").show();
calendar.render();
}); });
$("#view-list").click(function() { $("#view-list").click(function() {

View File

@ -144,6 +144,8 @@ $('#view-calendar').click(function() {
$("#sales-order-calendar").show(); $("#sales-order-calendar").show();
$("#view-list").show(); $("#view-list").show();
calendar.render();
}); });
$("#view-list").click(function() { $("#view-list").click(function() {