From 3518f8160c743f67406211dd79d932030378d563 Mon Sep 17 00:00:00 2001 From: luisddm Date: Mon, 13 Jan 2025 11:24:32 +0100 Subject: [PATCH] :bug: Fix passing clojure map as js map --- frontend/src/app/main/ui/comments.cljs | 2 +- frontend/src/app/main/ui/workspace/viewport/comments.cljs | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/main/ui/comments.cljs b/frontend/src/app/main/ui/comments.cljs index fbe559461..e20f0c827 100644 --- a/frontend/src/app/main/ui/comments.cljs +++ b/frontend/src/app/main/ui/comments.cljs @@ -962,7 +962,7 @@ (some? position-modifier) (gpt/transform position-modifier)) - max-height (when (some? viewport) (int (* (get viewport :height) 0.75))) + max-height (when (some? viewport) (int (* (:height viewport) 0.75))) ;; We should probably look for a better way of doing this. bubble-margin {:x 24 :y 24} diff --git a/frontend/src/app/main/ui/workspace/viewport/comments.cljs b/frontend/src/app/main/ui/workspace/viewport/comments.cljs index 5cc97b574..9efd425ba 100644 --- a/frontend/src/app/main/ui/workspace/viewport/comments.cljs +++ b/frontend/src/app/main/ui/workspace/viewport/comments.cljs @@ -55,6 +55,8 @@ (mapv (partial update-position positions)) (dcm/apply-filters local profile))) + viewport (assoc vport :offset-x pos-x :offset-y pos-y) + on-draft-cancel (mf/use-fn #(st/emit! :interrupt)) @@ -86,7 +88,7 @@ (when (seq (dcm/apply-filters local profile [thread])) [:> cmt/comment-floating-thread* {:thread (update-position positions thread) :profiles profiles - :viewport {:offset-x pos-x :offset-y pos-y :width (:width vport) :height (:height vport)} + :viewport viewport :zoom zoom}]))) (when-let [draft (:comment drawing)]