Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2016
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. [{:data
  2.   [{:colors/list [:db/id :color/name :color/rgb]}  
  3.    {:faces/list
  4.     [:db/id
  5.      :face/name
  6.      {:face/background [:db/id :color/name :color/rgb]}
  7.      {:face/foreground [:db/id :color/name :color/rgb]}]}
  8.    {:code-chunks/list
  9.     [{:code-chunk/face
  10.       [:db/id
  11.        :face/name
  12.        {:face/background [:db/id :color/name :color/rgb]}
  13.        {:face/foreground [:db/id :color/name :color/rgb]}]}
  14.      :code-chunk/line-chunk
  15.      :code-chunk/string]}]}
  16.  {:widgets
  17.   [{:sidebar
  18.     [{:palette [{:colors/list [:db/id :color/name :color/rgb]}]}
  19.      {:faces
  20.       [{:faces/list
  21.         [:db/id
  22.          :face/name
  23.          {:face/background [:db/id :color/name :color/rgb]}
  24.          {:face/foreground [:db/id :color/name :color/rgb]}]}]}]}
  25.    {:code-display
  26.     [{:code-chunks/list
  27.       [{:code-chunk/face  ;; <-- This is the query causing the issue I believe
  28.         [:db/id
  29.          :face/name
  30.          {:face/background [:db/id :color/name :color/rgb]}
  31.          {:face/foreground [:db/id :color/name :color/rgb]}]}
  32.        :code-chunk/line-chunk
  33.        :code-chunk/string]}]}]}]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement