Cataloghi...
This commit is contained in:
@@ -5396,7 +5396,7 @@ module.exports = {
|
||||
contatto = '';
|
||||
}
|
||||
}
|
||||
if ((myrec.contact_telegram && myrec.contact_telegram.toLowerCase() !== contatto_telegram.toLowerCase()) || !contatto) {
|
||||
if ((myrec.contact_telegram && myrec.contact_telegram?.toLowerCase() !== contatto_telegram?.toLowerCase()) || !contatto) {
|
||||
contatto += '\n' + myrec.contact_telegram;
|
||||
}
|
||||
/*if (myrec.contact_phone) {
|
||||
@@ -5709,7 +5709,7 @@ module.exports = {
|
||||
const allElements = document.body.querySelectorAll('*');
|
||||
|
||||
allElements.forEach(element => {
|
||||
const tagName = element.tagName.toLowerCase();
|
||||
const tagName = element.tagName?.toLowerCase();
|
||||
|
||||
if (!allowedTags.includes(tagName)) {
|
||||
// Crea un nodo di testo e sostituisci l'elemento con quel nodo di testo
|
||||
|
||||
@@ -274,7 +274,7 @@ module.exports = {
|
||||
{ table: 'catgrps', key: 'descr' },
|
||||
{
|
||||
table: 'contribtypes',
|
||||
key: 'descr',
|
||||
keyOLD: 'descr',
|
||||
},
|
||||
{ table: 'goods', key: 'descr', key2: 'idSectorGood' },
|
||||
{ table: 'levels', key: 'descr' },
|
||||
|
||||
Reference in New Issue
Block a user