Merge branch 'stable'

This commit is contained in:
Yuri Kuznetsov
2020-06-22 13:53:50 +03:00
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ class ProcessJobQueueQ0 extends \Espo\Core\Jobs\Base
{
public function run()
{
$limit = $this->getConfig()->get('jobQ1MaxPortion', 200);
$limit = $this->getConfig()->get('jobQ0MaxPortion', 200);
$cronManager = new \Espo\Core\CronManager($this->getContainer());
+3 -1
View File
@@ -462,6 +462,8 @@ define('views/site/navbar', 'view', function (Dep) {
updateSizeForVertical();
this.$el.find('.notifications-badge-container').insertAfter(this.$el.find('.quick-create-container'));
this.adjustBodyMinHeight();
},
getNavbarHeight: function () {
@@ -479,7 +481,7 @@ define('views/site/navbar', 'view', function (Dep) {
},
adjustBodyMinHeightVertical: function () {
var minHeight = this.$tabs.height() + this.getStaticItemsHeight();
var minHeight = this.$tabs.get(0).scrollHeight + this.getStaticItemsHeight();
var moreHeight = 0;
this.$more.find('> li:visible').each(function (i, el) {