diff --git a/datasette/views/table.py b/datasette/views/table.py index 79b9a1b9..79af60c0 100644 --- a/datasette/views/table.py +++ b/datasette/views/table.py @@ -120,6 +120,8 @@ class RowTableShared(BaseView): ) if plugin_display_value is not None: display_value = plugin_display_value + elif isinstance(value, bytes): + display_value = jinja2.Markup("<{} bytes>".format(len(value))) elif isinstance(value, dict): # It's an expanded foreign key - display link to other row label = value["label"]