Fixed an issue where backslash breaks syntax highlighting. #7528

This commit is contained in:
Aditya Toshniwal 2024-06-17 16:16:15 +05:30
parent b0e7847962
commit 439d6cb28f
2 changed files with 1 additions and 1 deletions

View File

@ -37,5 +37,6 @@ Bug fixes
| `Issue #7414 <https://github.com/pgadmin-org/pgadmin4/issues/7414>`_ - Add support for comments on RLS policy object.
| `Issue #7481 <https://github.com/pgadmin-org/pgadmin4/issues/7481>`_ - Fixed an issue where dark theme shows white background when all tabs are closed.
| `Issue #7516 <https://github.com/pgadmin-org/pgadmin4/issues/7516>`_ - Ensure preferences can be loaded using preferences.json.
| `Issue #7528 <https://github.com/pgadmin-org/pgadmin4/issues/7528>`_ - Ensure preferences can be loaded using preferences.json.
| `Issue #7536 <https://github.com/pgadmin-org/pgadmin4/issues/7536>`_ - Search Objects dialog should focus on search input on open.
| `Issue #7555 <https://github.com/pgadmin-org/pgadmin4/issues/7555>`_ - Fixed an issue where query tool shortcuts for find/replace are not working.

View File

@ -4,7 +4,6 @@ const extraKeywords = 'unsafe';
const keywords = PostgreSQL.spec.keywords.replace(/\b\w\b/, '') + ' ' + extraKeywords;
const PgSQL = SQLDialect.define({
backslashEscapes: true,
charSetCasts: true,
doubleDollarQuotedStrings: false,
operatorChars: '+-*/<>=~!@#%^&|`?',