Skip to content

Commit 83a2cfa

Browse files
author
David Buezas
committed
fixed lambda
1 parent 42132f2 commit 83a2cfa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/plotly-graph-card.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,9 +222,9 @@ export class PlotlyGraph extends HTMLElement {
222222
return merge(
223223
{
224224
show_value: entity.show_value ?? false,
225-
lambda: entity.lambda ? window.eval(entity.lambda) : undefined,
226225
},
227-
entity
226+
entity,
227+
{ lambda: entity.lambda ? window.eval(entity.lambda) : undefined }
228228
);
229229
}),
230230

0 commit comments

Comments
 (0)