Skip to content

Commit 998ae56

Browse files
committed
Fix change highlighting
1 parent 684dd08 commit 998ae56

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

jobhunt/Services/WatchedPageChangeService.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -98,13 +98,13 @@ public WatchedPageChangeService(JobHuntContext context, IOptions<ScreenshotOptio
9898

9999
private const string _changeStyles = """
100100
<style>
101-
[data-jh-added=""true""] {
101+
[data-jh-added="true"] {
102102
outline: 2px solid #4CAF50;
103103
}
104-
[data-jh-removed=""true""] {
104+
[data-jh-removed="true"] {
105105
outline: 2px solid #F44336;
106106
}
107-
[data-jh-modified=""true""] {
107+
[data-jh-modified="true"] {
108108
outline: 2px solid #FFD54F;
109109
}
110110
</style>

0 commit comments

Comments
 (0)