Skip to content
Snippets Groups Projects
Commit d3d8c5ad authored by Simon Belak's avatar Simon Belak
Browse files

Make linter happy

parent ec535954
No related branches found
No related tags found
No related merge requests found
......@@ -552,11 +552,15 @@
(defmethod automagic-analysis (type Card)
[card]
(automagic-dashboard card))
(if (table-like? card)
(automagic-dashboard card)
nil))
(defmethod automagic-analysis (type Query)
[query]
(automagic-dashboard query))
(if (table-like? query)
(automagic-dashboard query)
nil))
(defmethod automagic-analysis (type Field)
[field]
......
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