From c7a4b4fd0c4ff254b7013fba48f3d375dba0b323 Mon Sep 17 00:00:00 2001 From: Mathias Date: Wed, 28 Feb 2024 22:12:13 +0000 Subject: [PATCH] Remove required from col attribute on table --- lib/flop_phoenix/table.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/flop_phoenix/table.ex b/lib/flop_phoenix/table.ex index 8890087..0144ce4 100644 --- a/lib/flop_phoenix/table.ex +++ b/lib/flop_phoenix/table.ex @@ -43,7 +43,7 @@ defmodule Flop.Phoenix.Table do attr :target, :string, required: true attr :caption, :string, required: true attr :opts, :any, required: true - attr :col, :any, required: true + attr :col, :any attr :items, :list, required: true attr :foot, :any, required: true attr :row_id, :any, default: nil