Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove new tab target from manage link, #11635 #11636

Merged
merged 2 commits into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion arches/app/templates/index.htm
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ <h1>{% blocktrans %}Arches | {{version}}{% endblocktrans %}</h1>
</li>
{% if user|can_create_resource_instance and user.username != 'anonymous' %}
<li>
<a href="{% url 'resource' %}" target="_blank">{% trans "Manage" %}</a>
<a href="{% url 'resource' %}">{% trans "Manage" %}</a>
</li>
{% endif %}
{% if user.username == 'anonymous' %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ <h1>{% blocktrans %}Arches | {{version}}{% endblocktrans %}</h1>
</li>
{% if user|can_create_resource_instance and user.username != 'anonymous' %}
<li>
<a href="{% url 'resource' %}" target="_blank">{% trans "Manage" %}</a>
<a href="{% url 'resource' %}">{% trans "Manage" %}</a>
</li>
{% endif %}
{% if user.username == 'anonymous' %}
Expand Down
1 change: 1 addition & 0 deletions releases/8.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Arches 8.0.0 Release Notes
- Concepts API no longer responds with empty body for error conditions [#11519](https://github.com/archesproject/arches/issues/11519)
- Removes sample index from new projects, updates test coverage behavior [#11591](https://github.com/archesproject/arches/issues/11519)
- Make number datatype node values searchable in the main search [#11619](https://github.com/archesproject/arches/issues/11619)
- Prevent navigation to a new browser tab when clicking Manage link in index.htm [#11635](https://github.com/archesproject/arches/issues/11635)

### Dependency changes
```
Expand Down