Update config.ts

This commit is contained in:
FlorianZahn 2021-10-06 08:31:18 +02:00 committed by GitHub
parent 84924b6364
commit 51aab00985
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -123,7 +123,7 @@ class SBMap<T, U> extends Map {
addArray(key: T, value: U) {
// Expand an array by value
let result = super.get(key).concat(value);
const result = super.get(key).concat(value);
this.set(key, result);
this.update();
return result;