We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf7e51a commit bab068aCopy full SHA for bab068a
1 file changed
src/main/frontend/components/block.cljs
@@ -1130,7 +1130,9 @@
1130
(and (string? uuid-or-title) (string/ends-with? uuid-or-title ".excalidraw"))
1131
[:div.draw {:on-click (fn [e]
1132
(.stopPropagation e))}
1133
- (excalidraw uuid-or-title (:block/uuid config))]
+ (if (config/db-based-graph?)
1134
+ [:div.warning "Excalidraw is no longer supported by default, we plan to support it through plugins."]
1135
+ (excalidraw uuid-or-title (:block/uuid config)))]
1136
1137
:else
1138
(let [blank-title? (string/blank? (:block/title block))]
0 commit comments