Chandan
Chandan
Not deleting the required empty properties here: https://github.com/json-editor/json-editor/blob/master/src/editors/object.js#L1090 seems to do the trick. replace ``` if (isEmpty(result[key])) { ``` with ``` if (isEmpty(result[key]) && !(Array.isArray(this.schema.required)) && this.schema.required.includes(key)) { ``` I...
Adding `.collation({locale: "en_US", numericOrdering: true })` to the two `aggregate()` calls in https://github.com/Vulnogram/Vulnogram/blob/47e50b7fb018c7e2e0261acdd0d91a8ac87fca21/routes/doc.js#L1119 https://github.com/Vulnogram/Vulnogram/blob/47e50b7fb018c7e2e0261acdd0d91a8ac87fca21/routes/doc.js#L1138 fixes it, but not sure of the performance impact - seems like there is no way...
Yes, looking for something minimal but functional that should not load anything other than some allowed list of text formatting tags (either from backend or from copy/paste, drag drop sources)
Currently implemented to replace the description with Automatic-text.
Button reintroduced. Generates a description based on other fields, except the affected versions details.
If the pasted or imported value in DATE_PUBLIC is a valid ISO date I see it the GUI date picker shows it, but if it is invalid it resets it...
Hi Vijay, Thank you for this PR, I took in some of the fixes, but there seem to be too many unrelated changes part of the PR (due to how...
Can you please resolve merge conflicts?
resolved conflicts and merged.
With CVE JSON 5.0 and [Vulnogram 0.1.0](https://vulnogram.github.io/cve5/#editor) the only extra fields are: bug ids, advisory ids, source of discovery, and a fields that Vulnogram version used for generating the record....