mirror of
https://github.com/ae-utbm/sith.git
synced 2025-04-04 10:50:27 +00:00
Fix missing current permanency display, delegate slot label config to locales
This commit is contained in:
parent
9206fed4ce
commit
203b5d88ac
@ -27,6 +27,7 @@ class PermanencyFilterSchema(FilterSchema):
|
|||||||
start_before: datetime | None = Field(None, q="start__lte")
|
start_before: datetime | None = Field(None, q="start__lte")
|
||||||
end_after: datetime | None = Field(None, q="end__gte")
|
end_after: datetime | None = Field(None, q="end__gte")
|
||||||
end_before: datetime | None = Field(None, q="end__lte")
|
end_before: datetime | None = Field(None, q="end__lte")
|
||||||
|
took_place_after: datetime | None = Field(None, q=["start__gte", "end__gte"])
|
||||||
counter: set[int] | None = Field(None, q="counter_id__in")
|
counter: set[int] | None = Field(None, q="counter_id__in")
|
||||||
|
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ async function loadChart(options: ActivityChartConfig) {
|
|||||||
query: {
|
query: {
|
||||||
counter: [options.counterId],
|
counter: [options.counterId],
|
||||||
// biome-ignore lint/style/useNamingConvention: backend API uses snake_case
|
// biome-ignore lint/style/useNamingConvention: backend API uses snake_case
|
||||||
end_after: options.startDate.toISOString(),
|
took_place_after: options.startDate.toISOString(),
|
||||||
},
|
},
|
||||||
} as PermanencyFetchPermananciesData);
|
} as PermanencyFetchPermananciesData);
|
||||||
|
|
||||||
@ -44,7 +44,6 @@ async function loadChart(options: ActivityChartConfig) {
|
|||||||
plugins: [timeGridPlugin],
|
plugins: [timeGridPlugin],
|
||||||
initialView: "timeGridWeek",
|
initialView: "timeGridWeek",
|
||||||
locale: options.locale,
|
locale: options.locale,
|
||||||
slotLabelFormat: { hour: "2-digit", minute: "2-digit", hour12: false },
|
|
||||||
dayHeaderFormat: { weekday: "long" },
|
dayHeaderFormat: { weekday: "long" },
|
||||||
firstDay: 1,
|
firstDay: 1,
|
||||||
views: { timeGrid: { allDaySlot: false } },
|
views: { timeGrid: { allDaySlot: false } },
|
||||||
|
Loading…
x
Reference in New Issue
Block a user