diff --git a/src/Infolists/Components/TimeLinePropertiesEntry.php b/src/Infolists/Components/TimeLinePropertiesEntry.php
index 5edbcfb..e54ab06 100644
--- a/src/Infolists/Components/TimeLinePropertiesEntry.php
+++ b/src/Infolists/Components/TimeLinePropertiesEntry.php
@@ -64,7 +64,7 @@ private function compareOldAndNewValues(array $oldValues, array $newValues): arr
if (isset($oldValues[$key]) && $oldValues[$key] != $newValue) {
$changes[] = "- {$key} from " . htmlspecialchars($oldValue) . ' to ' . htmlspecialchars($newValue) . '';
} else {
- $changes[] = "- {$key} '" . htmlspecialchars($newValue) . '';
+ $changes[] = "- {$key} " . htmlspecialchars($newValue) . '';
}
}