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 {
|
export function functionValueCalculator<T>(useFunction: boolean, func: CompiledTbFunction<GenericFunction>, params = [], defaultValue: T): T {
|
||||||
let res: T;
|
let res: T;
|
||||||
if (useFunction && isDefined(func) && isFunction(func)) {
|
if (useFunction && isDefinedAndNotNull(func)) {
|
||||||
try {
|
try {
|
||||||
res = func.execute(...params);
|
res = func.execute(...params);
|
||||||
if (!isDefinedAndNotNull(res) || res === '') {
|
if (!isDefinedAndNotNull(res) || res === '') {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user