Skip to content
This repository was archived by the owner on Jul 17, 2025. It is now read-only.

Commit d0e4f14

Browse files
authored
TASK: Add target="_blank" to links in PageList partial
I found it to be quite disorienting to leave the backend entirely when clicking on a preview link., so in order to improve UX, I'd like to suggest to open the page preview links in a new tab.
1 parent 12811f4 commit d0e4f14

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Resources/Private/Partials/Module/FeatureModule/PageList.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
{page.properties.title}
1111
</td>
1212
<td>
13-
<neos:link.node node="{page}" class="neos-pull-right"><i class="fas fa-eye"></i></neos:link.node>
13+
<neos:link.node node="{page}" class="neos-pull-right" target="_blank" rel="noopener noreferrer"><i class="fas fa-eye"></i></neos:link.node>
1414
</td>
1515
</tr>
1616
</f:for>
@@ -25,4 +25,4 @@
2525
</f:if>
2626
</tbody>
2727
</table>
28-
</fieldset>
28+
</fieldset>

0 commit comments

Comments
 (0)