You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
} else if (route.name != 'home' || route?.query) {
This is potentially hard to understand and maintain. If there is a chance that route might be null or undefined, then this line would need route?.name in addition to route?.query (there are no other uses of route? in the file).
The text was updated successfully, but these errors were encountered:
cve-website/src/components/cveRecordSearchModule.vue
Line 225 in a96cce9
This is potentially hard to understand and maintain. If there is a chance that
route
might be null or undefined, then this line would need route?.name in addition to route?.query (there are no other uses of route? in the file).The text was updated successfully, but these errors were encountered: