We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug When I search the query on ModalHistory component appears a html tags with my input text.
To Reproduce Steps to reproduce the behavior:
Expected behavior Expected to see the search text in different color, specific text-primary text-bold.
Screenshots
On this image, the sql-highlight overlaid the color of search text (text-primary text-bold).
Application (please complete the following information):
Environment (please complete the following information):
Additional context To disable this, on ModalHistory.vue, remove the function hightlightWord:
v-html="highlight(highlightWord(query.sql), {html: true})" v-html="highlight(query.sql, {html: true})"
Or, if you still want a visual effect, can be replace the pattern of highlightWord function:
return string.replace(regexp, '$1'); return string.replace(regexp, '%$1%'); // replace the % to quotation marks.
This will display the pattern of string green color.
The text was updated successfully, but these errors were encountered:
6cb21ff
Fabio286
No branches or pull requests
Describe the bug
When I search the query on ModalHistory component appears a html tags with my input text.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Expected to see the search text in different color, specific text-primary text-bold.
Screenshots
On this image, the sql-highlight overlaid the color of search text (text-primary text-bold).
Application (please complete the following information):
Environment (please complete the following information):
Additional context
To disable this, on ModalHistory.vue, remove the function hightlightWord:
Or, if you still want a visual effect, can be replace the pattern of highlightWord function:
This will display the pattern of string green color.
The text was updated successfully, but these errors were encountered: