Skip to content
Snippets Groups Projects
Commit bd021516 authored by Johannes Goderbauer's avatar Johannes Goderbauer
Browse files

Fix: wrong color exception if no color was given

parent a591d7e3
No related branches found
No related tags found
No related merge requests found
import("system.vars");
import("system.result");
result.string(vars.get("$field.ICON_COLOR"));
\ No newline at end of file
var color = vars.get("$field.ICON_COLOR")
if (color)
result.string(color);
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment