From 0710a652efdf76d62d092a9fea3e9251b23e7811 Mon Sep 17 00:00:00 2001 From: Inhji Date: Tue, 7 Mar 2023 23:19:45 +0100 Subject: [PATCH] remove slug and url from note index table --- lib/chiya_web/controllers/note_html/index.html.heex | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/chiya_web/controllers/note_html/index.html.heex b/lib/chiya_web/controllers/note_html/index.html.heex index 049fdb3..3c16ec7 100644 --- a/lib/chiya_web/controllers/note_html/index.html.heex +++ b/lib/chiya_web/controllers/note_html/index.html.heex @@ -9,10 +9,8 @@ <.table id="notes" rows={@notes} row_click={&JS.navigate(~p"/admin/notes/#{&1}")}> <:col :let={note} label="Name"><%= note.name %> - <:col :let={note} label="Slug"><%= note.slug %> <:col :let={note} label="Published at"><%= note.published_at %> <:col :let={note} label="Kind"><%= note.kind %> - <:col :let={note} label="Url"><%= note.url %> <:action :let={note}>
<.link navigate={~p"/admin/notes/#{note}"}>Show