Skip to content
New issue

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

optional chaining analysis #961

Closed
Changes from all commits
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
optional chaining analysis
  • Loading branch information
rahuljain-dev committed Oct 17, 2024
commit 1d712cabf5d78202f7247b824c843e674051c51b
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -46,7 +46,7 @@
"chai": "^4.2.0",
"check-engine": "^1.10.0",
"coveralls": "^3.0.2",
"eslint": "^5.15.1",
"eslint": "^9.12.0",
"eslint-plugin-html": "^5.0.3",
"husky": "^4.2.3",
"istanbul-instrumenter-loader": "^3.0.1",
1 change: 1 addition & 0 deletions ui/widgets/nuxeo-tag-suggestion.js
Original file line number Diff line number Diff line change
@@ -237,6 +237,7 @@ import { escapeHTML } from './nuxeo-selectivity.js';
}

_newEntryFormatter(term) {
term = term?.toLowerCase();
return { id: term, displayLabel: term, newTag: true };
}