mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 22:30:15 +00:00
Remove wrong backticks from json path help window (#4892)
Co-authored-by: Dimitri Mitropoulos <dimitrimitropoulos@gmail.com>
This commit is contained in:
parent
1036686d68
commit
044a3b0a7d
@ -37,10 +37,10 @@ const JSONPathHelp: FC = () => (
|
||||
<HelpExamples
|
||||
helpExamples={[
|
||||
{ code: '$.store.books[*].title', description: 'Get titles of all books in the store' },
|
||||
{ code: '$.store.books[?(`@.price < 10)].title', description: 'Get books costing less than $10' },
|
||||
{ code: '$.store.books[?(@.price < 10)].title', description: 'Get books costing less than $10' },
|
||||
{ code: '$.store.books[-1:]', description: 'Get the last book in the store' },
|
||||
{ code: '$.store.books.length', description: 'Get the number of books in the store' },
|
||||
{ code: '$.store.books[?(`@.title.match(/lord.*rings/i))]', description: 'Get book by title regular expression' },
|
||||
{ code: '$.store.books[?(@.title.match(/lord.*rings/i))]', description: 'Get book by title regular expression' },
|
||||
]}
|
||||
/>
|
||||
<p className="notice info">
|
||||
|
Loading…
Reference in New Issue
Block a user