Skip to content

Commit

Permalink
more merge
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanVukovic99 committed Feb 15, 2024
1 parent bcd6d1d commit 1d7a349
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ext/js/language/translator.js
Original file line number Diff line number Diff line change
Expand Up @@ -1322,7 +1322,7 @@ export class Translator {
* @returns {Generator<Map<string, unknown>, void, void>}
*/
*_generateArrayVariants(arrayVariants) {
const variantKeys = Array.from(arrayVariants.keys());
const variantKeys = [...arrayVariants.keys()];
const entryVariantLengths = [];
for (const key of variantKeys) {
const entryVariants = /** @type {unknown[]} */ (arrayVariants.get(key));
Expand Down
2 changes: 1 addition & 1 deletion test/options-util.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ function createOptionsUpdatedTestData1() {
}
],
profileCurrent: 0,
version: 25,
version: 26,
global: {
database: {
prefixWildcardsSupported: false
Expand Down

0 comments on commit 1d7a349

Please sign in to comment.