Add missing return

pull/1/head
yflory 2021-02-03 12:14:54 +01:00
parent d17b17c2e3
commit f8ae3a8c8e
1 changed files with 1 additions and 0 deletions

View File

@ -147,6 +147,7 @@ define([
var updateBoards = function (framework, kanban, boards) {
if ((now() - _lastUpdate) > 5000) {
_updateBoards(framework, kanban, boards);
return;
}
_updateBoardsThrottle();
};