Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix autocomplete for bool values
Signed-off-by: Adhitya Mamallan <adhitya.mamallan@uber.com>
  • Loading branch information
adhityamamallan committed Nov 11, 2025
commit 5ebc302511ad2a466f93899f10973fcc3cc84b1a
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const STATUSES = [
'"timed_out"',
];

export const BOOLEAN_VALUES = ['TRUE', 'FALSE'];
export const BOOLEAN_VALUES = ['"true"', '"false"'];

export const TIME_FORMAT = '"YYYY-MM-DDTHH:MM:SS±HH:MM"';

Expand Down
Loading