Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
search-engine
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
asrael
search-engine
Commits
22c8d55d
Verified
Commit
22c8d55d
authored
Jan 13, 2020
by
Thibault Ehrhart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix html tags in Highlight pipe
parent
5befc78f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/app/pipes/highlight/highlight.pipe.ts
src/app/pipes/highlight/highlight.pipe.ts
+3
-3
No files found.
src/app/pipes/highlight/highlight.pipe.ts
View file @
22c8d55d
...
...
@@ -12,9 +12,9 @@ export class HighlightPipe implements PipeTransform {
return
t
.
length
>
0
;
}).
join
(
'
|
'
);
const
regex
=
new
RegExp
(
pattern
,
'
gi
'
);
return
text
.
replace
(
regex
,
(
match
)
=>
`<span class="search-highlight">
${
match
}
</span>`
);
}
else
{
return
text
;
text
=
text
.
replace
(
regex
,
(
match
)
=>
`<span class="search-highlight">
${
match
}
</span>`
);
return
this
.
sanitizer
.
bypassSecurityTrustHtml
(
text
);
}
return
text
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment