Browse Source

enhance: increase default width for the query column

Tienson Qin 1 year ago
parent
commit
3a8352ee04
1 changed files with 7 additions and 1 deletions
  1. 7 1
      src/main/frontend/components/views.cljs

+ 7 - 1
src/main/frontend/components/views.cljs

@@ -225,8 +225,14 @@
   [column sized-columns]
   (let [id (:id column)
         size (get sized-columns id)]
-    (if (number? size)
+    (cond
+      (number? size)
       size
+
+      (= id :logseq.property/query)
+      400
+
+      :else
       (case id
         :select 32
         :add-property 160