aggiornamenti vari...

This commit is contained in:
Surya Paolo
2025-03-21 19:51:55 +01:00
parent a09a49ac37
commit 4c82015f27
121 changed files with 1343 additions and 5032 deletions

View File

@@ -163,7 +163,7 @@ export default defineComponent({
const scrollTop = window.scrollY || document.documentElement.scrollTop;
// Set a threshold value based on how much scroll is needed to fix the components
const threshold = 300;
const threshold = 300
// Update the isFixed ref based on the scroll position
isFixed.value = scrollTop > threshold;
@@ -970,7 +970,7 @@ export default defineComponent({
}
}*/
const valoriopt = computed(() => (item: any, addall: boolean, addnone?: boolean = false) => {
const valoriopt = computed(() => (item: any, addall: boolean, addnone: boolean = false) => {
// console.log('valoriopt', item.table)
return globalStore.getTableJoinByName(item.table, addall, addnone, item.filter)
})