From 5530a19d9fb67959886dd111d9dd8cee8e8c9156 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sat, 25 Oct 2025 17:16:40 -0700 Subject: [PATCH] Remove Plugin Source column from /-/allowed --- datasette/templates/debug_allowed.html | 2 -- 1 file changed, 2 deletions(-) diff --git a/datasette/templates/debug_allowed.html b/datasette/templates/debug_allowed.html index 876e6223..9483926b 100644 --- a/datasette/templates/debug_allowed.html +++ b/datasette/templates/debug_allowed.html @@ -165,7 +165,6 @@ function displayResults(data) { html += 'Parent'; html += 'Child'; html += 'Reason'; - html += 'Source Plugin'; html += ''; html += ''; @@ -175,7 +174,6 @@ function displayResults(data) { html += `${escapeHtml(item.parent || '—')}`; html += `${escapeHtml(item.child || '—')}`; html += `${escapeHtml(item.reason || '—')}`; - html += `${escapeHtml(item.source_plugin || '—')}`; html += ''; }