You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/app/services/api.ts
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1103,13 +1103,13 @@ async function graphqlLightCombinedSearch(
1103
1103
1104
1104
if(issues.length>=SEARCH_RESULT_CAP){
1105
1105
console.warn(`[api] Issue search results capped at ${SEARCH_RESULT_CAP}`);
1106
-
pushNotification("search/issues",`Issue search results capped at ${SEARCH_RESULT_CAP.toLocaleString()} — some items are hidden`,"warning");
1106
+
pushNotification("search/issues",`Issue search results capped at ${SEARCH_RESULT_CAP.toLocaleString("en-US")} — some items are hidden`,"warning");
1107
1107
issues.splice(SEARCH_RESULT_CAP);
1108
1108
}
1109
1109
1110
1110
if(prMap.size>=SEARCH_RESULT_CAP){
1111
1111
console.warn(`[api] PR search results capped at ${SEARCH_RESULT_CAP}`);
1112
-
pushNotification("search/prs",`PR search results capped at ${SEARCH_RESULT_CAP.toLocaleString()} — some items are hidden`,"warning");
1112
+
pushNotification("search/prs",`PR search results capped at ${SEARCH_RESULT_CAP.toLocaleString("en-US")} — some items are hidden`,"warning");
1113
1113
}
1114
1114
1115
1115
constpullRequests=[...prMap.values()];
@@ -1209,13 +1209,13 @@ async function graphqlUnfilteredSearch(
1209
1209
1210
1210
if(issues.length>=SEARCH_RESULT_CAP){
1211
1211
console.warn(`[api] Unfiltered issue results capped at ${SEARCH_RESULT_CAP}`);
1212
-
pushNotification("search/unfiltered-issues",`Monitored repo issue results capped at ${SEARCH_RESULT_CAP.toLocaleString()} — some items are hidden`,"warning");
1212
+
pushNotification("search/unfiltered-issues",`Monitored repo issue results capped at ${SEARCH_RESULT_CAP.toLocaleString("en-US")} — some items are hidden`,"warning");
1213
1213
issues.splice(SEARCH_RESULT_CAP);
1214
1214
}
1215
1215
1216
1216
if(prMap.size>=SEARCH_RESULT_CAP){
1217
1217
console.warn(`[api] Unfiltered PR results capped at ${SEARCH_RESULT_CAP}`);
1218
-
pushNotification("search/unfiltered-prs",`Monitored repo PR results capped at ${SEARCH_RESULT_CAP.toLocaleString()} — some items are hidden`,"warning");
1218
+
pushNotification("search/unfiltered-prs",`Monitored repo PR results capped at ${SEARCH_RESULT_CAP.toLocaleString("en-US")} — some items are hidden`,"warning");
1219
1219
}
1220
1220
1221
1221
constpullRequests=[...prMap.values()];
@@ -1617,7 +1617,7 @@ async function graphqlSearchIssues(
1617
1617
1618
1618
if(issues.length>=SEARCH_RESULT_CAP){
1619
1619
console.warn(`[api] Issue search results capped at ${SEARCH_RESULT_CAP}`);
1620
-
pushNotification("search/issues",`Issue search results capped at ${SEARCH_RESULT_CAP.toLocaleString()} — some items are hidden`,"warning");
1620
+
pushNotification("search/issues",`Issue search results capped at ${SEARCH_RESULT_CAP.toLocaleString("en-US")} — some items are hidden`,"warning");
1621
1621
issues.splice(SEARCH_RESULT_CAP);
1622
1622
}
1623
1623
@@ -1757,7 +1757,7 @@ async function graphqlSearchPRs(
1757
1757
1758
1758
if(prMap.size>=SEARCH_RESULT_CAP){
1759
1759
console.warn(`[api] PR search results capped at ${SEARCH_RESULT_CAP}`);
1760
-
pushNotification("search/prs",`PR search results capped at ${SEARCH_RESULT_CAP.toLocaleString()} — some items are hidden`,"warning");
1760
+
pushNotification("search/prs",`PR search results capped at ${SEARCH_RESULT_CAP.toLocaleString("en-US")} — some items are hidden`,"warning");
1761
1761
}
1762
1762
1763
1763
// Fork PR fallback: for PRs with null checkStatus where head repo owner differs from base
0 commit comments