Entity UI Overview table is adding an extra space in label column. Here is an example of the HTML:
<td>Monday <small> (Machine name: monday)</small>
Function theme_entity_ui_overview_item($variables) is adding this extra space, that could be removed.
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | extra_space-2445881-1.patch | 704 bytes | plopesc |
Comments
Comment #1
plopescHere is the simple patch for this issue.
Now, HTML output would be
<td>Monday <small>(Machine name: monday)</small>Regards
Comment #2
e0ipsoThis came up in a project @plopesc and I are working on. This made Simpletests look stupid. We had to fix them to add the 2 spaces while checking for text in the page.
This is pretty straight forward.
Comment #4
fagoThanks, committed. Sry for letting this lie so long!