Skip to content
Open
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 app/eventyay/static/eventyay-common/js/ui/popover.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ $(function () {
<div class="profile-menu separator"></div>
<div class="profile-menu">
<div class="profile-menu border-top">
<a href="${basePath}${accountPath}" target="_self" class="btn btn-outline-success">
<i class="fa fa-user-circle"></i> ${window.gettext('Account')}
</a>
Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/eventyay/static/global-nav-menu/js/global-nav-menu.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/eventyay/static/pretixcontrol/js/ui/popover.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ $(function () {
</a>
</div>
<div class="profile-menu separator"></div>
<div class="profile-menu">
<div class="profile-menu border-top">
Comment on lines 69 to +70
Copy link

Copilot AI Dec 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's a duplicate separator element on line 80 that should be removed. The CSS now hides elements with the separator class (line 883 in main.scss), and this separator appears redundant since the last item (Logout) already gets a border via the :last-child selector. This creates unnecessary DOM clutter.

Copilot uses AI. Check for mistakes.
<a href="${basePath}${accountPath}" target="_self" class="btn btn-outline-success">
<i class="fa fa-user-circle"></i> ${window.gettext('Account')}
</a>
Expand Down
Loading