SkipNotice now remembers what has already been voted. Also nicer highlighting of current selection.

This commit is contained in:
FlorianZahn
2021-10-09 08:08:46 +02:00
parent 907bd68e4e
commit 52ed4f73f4
2 changed files with 102 additions and 46 deletions

View File

@@ -531,5 +531,9 @@ export default class Utils {
return hashHex;
}
replaceArrayElement<Type>(array: Type[], value: Type, index: number): Type[] {
array[index] = value;
return array;
}
}