Just spotted that if you set the id (primary key) of a column to null you get this:
Clicking on that "None" text navigates to http://127.0.0.1:7744/data/blobs/None which says 404 "Row not found", and clicking the edit icon gives you this:
Clicking the delete icon gives you this:
But when you confirm you get this:
Meanwhile if the primary key value is "" (empty string) you get this:
There's nothing to click on to view the row page - in the HTML it's this:
<a href="/data/blobs/"></a>
And clicking the edit and deleting icons does nothing, their HTML is:
<tr data-row="">
...
<span class="row-inline-actions" aria-label="Row actions">
<button
type="button"
class="row-inline-action row-inline-action-edit"
aria-label="Edit row "
title="Edit row"
data-row-action="edit"
>
<svg>...</svg>
</button>
<button
type="button"
class="row-inline-action row-inline-action-delete"
aria-label="Delete row "
title="Delete row"
data-row-action="delete"
>
<svg>...</svg>
</button>
</span>
</tr>
Just spotted that if you set the
id(primary key) of a column tonullyou get this:Clicking on that "None" text navigates to http://127.0.0.1:7744/data/blobs/None which says 404 "Row not found", and clicking the edit icon gives you this:
Clicking the delete icon gives you this:
But when you confirm you get this:
Meanwhile if the primary key value is
""(empty string) you get this:There's nothing to click on to view the row page - in the HTML it's this:
<a href="/data/blobs/"></a>And clicking the edit and deleting icons does nothing, their HTML is: