Browse Source

fix(events): fix event details display for maximal elongation

tags/v0.10.6
Jérôme Deuchnord 2 years ago
committed by Jérôme Deuchnord
parent
commit
d73f74a34c
2 changed files with 5 additions and 1 deletions
  1. +4
    -0
      .github/workflows/e2e.yml
  2. +1
    -1
      _kosmorro/i18n/strings.py

+ 4
- 0
.github/workflows/e2e.yml View File

@@ -5,6 +5,10 @@ on:
branches: [master, features]
pull_request:
branches: [master, features]
schedule:
# Run the tests every day at 6:00 AM.
# This allows to run the tests against the relative dates
- cron: "0 6 * * *"

jobs:
e2e-tests:


+ 1
- 1
_kosmorro/i18n/strings.py View File

@@ -25,7 +25,7 @@ def from_event(event: Event, with_description: bool = True) -> Union[None, str]:
string = string % tuple([from_object(o.identifier) for o in event.objects])

if details is not None and with_description:
return "%s (%s)" % (string, details())
return "%s (%s)" % (string, details(event))

return string



Loading…
Cancel
Save