made recipients builtin non-editable and non-deletable

This commit is contained in:
gabryon99 2020-09-10 08:57:14 +02:00
parent 2e0b7015fc
commit 2048db187f
6 changed files with 129 additions and 135 deletions

View file

@ -90,6 +90,7 @@ class DataTableUtils {
}
static countEntries(val, data) {
let counter = 0;
data.forEach((d) => {
if (d.toLowerCase() == val.toLowerCase()) counter++;