UI: Fix issue where polygon/circle fill and stroke color functions didn't work in map widgets
This commit is contained in:
		
							parent
							
								
									e9036f8aa8
								
							
						
					
					
						commit
						39210905c2
					
				@ -260,7 +260,7 @@ export const parseWithTranslation = {
 | 
			
		||||
 | 
			
		||||
export function functionValueCalculator<T>(useFunction: boolean, func: CompiledTbFunction<GenericFunction>, params = [], defaultValue: T): T {
 | 
			
		||||
  let res: T;
 | 
			
		||||
  if (useFunction && isDefined(func) && isFunction(func)) {
 | 
			
		||||
  if (useFunction && isDefinedAndNotNull(func)) {
 | 
			
		||||
    try {
 | 
			
		||||
      res = func.execute(...params);
 | 
			
		||||
      if (!isDefinedAndNotNull(res) || res === '') {
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user