From 01e0c3fa18cd0dd7970e208790ffd683a420c924 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Thu, 16 Nov 2017 07:29:52 -0800 Subject: [PATCH] Fixed   bug   was showing for all None values in table cells, thanks to the autoescaping change introduced in 82261a638bd35c9 --- datasette/templates/table.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datasette/templates/table.html b/datasette/templates/table.html index f1539ee3..4cf138de 100644 --- a/datasette/templates/table.html +++ b/datasette/templates/table.html @@ -44,7 +44,7 @@ {% if not is_view %}{{ row_link(row) }}{% endif %} {% for td in row %} {% if not use_rowid or (use_rowid and not loop.first) %} - {{ td or " " }} + {{ td or " "|safe }} {% endif %} {% endfor %}