ソースを参照

newOffsetNum -> newOffset

Kaori Tokashiki 5 年 前
コミット
0b73baecbb
1 ファイル変更2 行追加2 行削除
  1. 2 2
      src/server/service/bolt.js

+ 2 - 2
src/server/service/bolt.js

@@ -157,8 +157,8 @@ class BoltService {
   }
   }
 
 
   showNextResults = (command, args, offset) => {
   showNextResults = (command, args, offset) => {
-    const newOffsetNum = offset + 10;
-    this.showEphemeralSearchResults(command, args, newOffsetNum);
+    const newOffset = offset + 10;
+    this.showEphemeralSearchResults(command, args, newOffset);
   }
   }
 
 
   async getSearchResultPaths(command, args, offset = 0) {
   async getSearchResultPaths(command, args, offset = 0) {