Skip to content

Commit

Permalink
Small changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrillkuettel committed Dec 15, 2024
1 parent 8b2c061 commit 804bd62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/privatim/locale/de/LC_MESSAGES/privatim.po
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ msgstr "Traktanden kopieren"

#: src/privatim/views/meetings.py
msgid "No other meetings to copy from"
msgstr "Keine weiteren Sitzungen zum Kopieren vorhanden"
msgstr "Es gibt nur eine Sitzung innerhalb dieses Gremiums"

#: src/privatim/views/meetings.py
msgid "Export"
Expand Down
2 changes: 1 addition & 1 deletion src/privatim/static/js/custom/custom.js
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ function autoHideSuccessMessages() {

function addTestSystemBadge() {
const testBadge = document.getElementById('testBadge');
if (window.location.href.includes('test')) {
if (window.location.href.includes('test') && !window.location.href.includes('q=test')) {
testBadge.style.display = 'inline-block';
}
}
Expand Down

0 comments on commit 804bd62

Please sign in to comment.