terrier-engine 4.24.2 → 4.24.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -186,7 +186,6 @@ export class DiveListPart extends TerrierPart<DiveListState> {
|
|
|
186
186
|
}
|
|
187
187
|
|
|
188
188
|
renderDiveSchedule(row: PartTag, dive: DdDive) {
|
|
189
|
-
log.info(`Rendering dive schedule: ${dive.delivery_schedule?.schedule_type}`, dive.delivery_schedule)
|
|
190
189
|
if (!dive.delivery_schedule || dive.delivery_schedule.schedule_type == 'none') {
|
|
191
190
|
return
|
|
192
191
|
}
|
|
@@ -194,7 +193,7 @@ export class DiveListPart extends TerrierPart<DiveListState> {
|
|
|
194
193
|
if (dive.delivery_recipients?.length) {
|
|
195
194
|
description += ` to:<br>${dive.delivery_recipients.join('<br>')}`
|
|
196
195
|
}
|
|
197
|
-
row.div(".glyp-setup.with-icon").text(inflection.titleize(dive.delivery_schedule.schedule_type))
|
|
196
|
+
row.div(".glyp-setup.with-icon.tt-flex.align-center").text(inflection.titleize(dive.delivery_schedule.schedule_type))
|
|
198
197
|
.data({tooltip: description})
|
|
199
198
|
}
|
|
200
199
|
|