Skip to content

Commit

Permalink
Merge pull request #43 from alexpgates/patch-1
Browse files Browse the repository at this point in the history
Remove unnecessary / typo single quote
  • Loading branch information
rmsramos authored Sep 22, 2024
2 parents e47c60c + 379fdf6 commit 42a9e0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Infolists/Components/TimeLinePropertiesEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ private function compareOldAndNewValues(array $oldValues, array $newValues): arr
if (isset($oldValues[$key]) && $oldValues[$key] != $newValue) {
$changes[] = "- {$key} from <strong>" . htmlspecialchars($oldValue) . '</strong> to <strong>' . htmlspecialchars($newValue) . '</strong>';
} else {
$changes[] = "- {$key} <strong>'" . htmlspecialchars($newValue) . '</strong>';
$changes[] = "- {$key} <strong>" . htmlspecialchars($newValue) . '</strong>';
}
}

Expand Down

0 comments on commit 42a9e0a

Please sign in to comment.