소스 검색

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

tags/v0.10.6
Jérôme Deuchnord 2 년 전
committed by Jérôme Deuchnord
부모
커밋
d73f74a34c
2개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. +4
    -0
      .github/workflows/e2e.yml
  2. +1
    -1
      _kosmorro/i18n/strings.py

+ 4
- 0
.github/workflows/e2e.yml 파일 보기

@@ -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 파일 보기

@@ -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



불러오는 중...
취소
저장