integration-tests
Josha von Gizycki 6 years ago
parent 17fdd6c30b
commit 26db044e41

@ -53,7 +53,7 @@
" | " " | "
[:a {:href (path :instance-edit-form instance)} [:a {:href (path :instance-edit-form instance)}
"Edit Instance"]]] "Edit Instance"]]]
(when-not (empty? (:properties instance)) (when (seq (:properties instance))
[:section.properties [:section.properties
[:h2 "Properties"] [:h2 "Properties"]
(for [prop (:properties instance) (for [prop (:properties instance)
@ -67,7 +67,7 @@
[:div {:class (str "instance-content " [:div {:class (str "instance-content "
"attr-type-" type)} "attr-type-" type)}
(render-fn (:value prop))]))]) (render-fn (:value prop))]))])
(when-not (empty? (:links-out instance)) (when (seq (:links-out instance))
[:section.links [:section.links
[:h2 "Outgoing Links"] [:h2 "Outgoing Links"]
[:table [:table
@ -90,8 +90,8 @@
{:schema-uuid (:uuid schema)})} {:schema-uuid (:uuid schema)})}
(h (:name schema))]] (h (:name schema))]]
[:td (prettify-dt (:created_at link))]])]]]) [:td (prettify-dt (:created_at link))]])]]])
(when (or (not (empty? (:links-out instance))) (when (or (seq (:links-out instance))
(not (empty? (:links-in instance)))) (seq (:links-in instance)))
[:section.visualisation [:section.visualisation
[:h2 "Visualisation"] [:h2 "Visualisation"]
[:image {:src (path :instance-link-viz instance) [:image {:src (path :instance-link-viz instance)
@ -114,7 +114,7 @@
(hform/form-to [:delete (path :instance-delete instance)] (hform/form-to [:delete (path :instance-delete instance)]
(anti-forgery-field) (anti-forgery-field)
(view/delete-btn)) (view/delete-btn))
(when-not (empty? (:links-out instance)) (when (seq (:links-out instance))
[:section.links [:section.links
[:h2 "Outgoing Links"] [:h2 "Outgoing Links"]
[:table [:table

Loading…
Cancel
Save