mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-16 04:43:35 +00:00
refactor: format times in editor based on project time format
This commit is contained in:
committed by
Carlos Valente
parent
b19e9d23ba
commit
9e771a2f24
@@ -34,10 +34,10 @@ function OverviewPlanning() {
|
||||
<>
|
||||
<div className={style.inline}>
|
||||
<TitleOverview />
|
||||
<StartTimesPlanning />
|
||||
<StartTimesPlanning shouldFormat />
|
||||
<PlanningStats />
|
||||
</div>
|
||||
<ClockOverview />
|
||||
<ClockOverview shouldFormat />
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -46,12 +46,12 @@ function OverviewTracking() {
|
||||
return (
|
||||
<>
|
||||
<div className={style.inline}>
|
||||
<StartTimesRuntime />
|
||||
<StartTimesRuntime shouldFormat />
|
||||
<ProgressOverview />
|
||||
<OffsetOverview />
|
||||
</div>
|
||||
<MetadataTimes />
|
||||
<ClockOverview />
|
||||
<ClockOverview shouldFormat />
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -61,12 +61,12 @@ function OverviewControl() {
|
||||
<>
|
||||
<TitleOverview />
|
||||
<div className={style.inline}>
|
||||
<StartTimesRuntime />
|
||||
<StartTimesRuntime shouldFormat />
|
||||
<ProgressOverview />
|
||||
<OffsetOverview />
|
||||
</div>
|
||||
<MetadataTimes />
|
||||
<ClockOverview />
|
||||
<ClockOverview shouldFormat />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user