mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-06 19:25:22 +03:00
don't show _ in attributes
This commit is contained in:
parent
8387f7543c
commit
fce108980d
@ -169,7 +169,7 @@ function getTimelineItemDescription(config, timelineItem, event) {
|
||||
time_format: config.ui.time_format,
|
||||
})}`;
|
||||
case 'attribute':
|
||||
return `${timelineItem.data.attribute} detected for ${event.label} at ${formatUnixTimestampToDateTime(
|
||||
return `${timelineItem.data.attribute.replaceAll("_", " ")} detected for ${event.label} at ${formatUnixTimestampToDateTime(
|
||||
timelineItem.timestamp,
|
||||
{
|
||||
date_style: 'short',
|
||||
|
||||
Loading…
Reference in New Issue
Block a user