Sfoglia il codice sorgente

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

tags/v0.10.6
Jérôme Deuchnord 2 anni fa
committed by Jérôme Deuchnord
parent
commit
d73f74a34c
2 ha cambiato i file con 5 aggiunte e 1 eliminazioni
  1. +4
    -0
      .github/workflows/e2e.yml
  2. +1
    -1
      _kosmorro/i18n/strings.py

+ 4
- 0
.github/workflows/e2e.yml Vedi 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 Vedi 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



Caricamento…
Annulla
Salva