Merge pull request #12456 from vvlladd28/bug/polygon-circe-color-function/not-work
Fix issue where polygon/circle fill and stroke color functions didn't work in map widgets
This commit is contained in:
commit
c09a2ee16d
@ -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