Explorar el Código

fix: don't use new and ambiguous terms in views

We introduced "record" when table view was first introduced but it's not
a term we use anywhere else in the UI. Better to keep with existing
terms like "node". Also record is not a term that makes sense in other view
types
Gabriel Horner hace 7 meses
padre
commit
b484316c2d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/main/frontend/components/views.cljs

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

@@ -1188,7 +1188,7 @@
        :size :sm
        :on-click (get-in table [:data-fns :add-new-object!])}
       (ui/icon (if asset? "upload" "plus")))
-     [:div "New record"])))
+     [:div "New node"])))
 
 (rum/defc add-new-row < rum/static
   [table]