瀏覽代碼

Use a default parameter for goToPage as isn't ~always called with a single one

jvoisin 1 年之前
父節點
當前提交
ffe1be59ea
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      internal/ui/static/js/app.js

+ 1 - 1
internal/ui/static/js/app.js

@@ -433,7 +433,7 @@ function unsubscribeFromFeed() {
  * @param {string} page Page to redirect to.
  * @param {boolean} fallbackSelf Refresh actual page if the page is not found.
  */
-function goToPage(page, fallbackSelf) {
+function goToPage(page, fallbackSelf = true) {
     const element = document.querySelector(":is(a, button)[data-page=" + page + "]");
 
     if (element) {