Просмотр исходного кода

fix: remove outdated built-in? check

We don't have lazy loading issues here anymore
Gabriel Horner 7 месяцев назад
Родитель
Сommit
6d2e2b0e62
1 измененных файлов с 1 добавлено и 2 удалено
  1. 1 2
      src/main/frontend/components/property.cljs

+ 1 - 2
src/main/frontend/components/property.cljs

@@ -577,8 +577,7 @@
                          (or
                           ;; built-in
                           (and (not (ldb/public-built-in-property? ent))
-                               ;; TODO: Use ldb/built-in? when intermittent lazy loading issue fixed
-                               (get db-property/built-in-properties (:db/ident ent)))
+                               (ldb/built-in? ent))
                           ;; other position
                           (when-not (or sidebar-properties?
                                         (and (:sidebar? opts) (= (:id opts) (str (:block/uuid block))))