-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from polarityio/develop
INT-1095 Removing Need for Entity SubType Remove custom summary components Use built-in CVE type Improve CVE search
- Loading branch information
Showing
9 changed files
with
40 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
polarity.export = PolarityComponent.extend({ | ||
details: Ember.computed.alias('block.data.details'), | ||
timezone: Ember.computed('Intl', function() { | ||
timezone: Ember.computed('Intl', function () { | ||
return Intl.DateTimeFormat().resolvedOptions().timeZone; | ||
}), | ||
isKbEntity: Ember.computed('block.entity.types.[]', function () { | ||
return this.get('block.entity.types').includes('custom.kb'); | ||
}), | ||
isCveEntity: Ember.computed('block.entity.types.[]', function () { | ||
return this.get('block.entity.types').includes('cve'); | ||
}) | ||
}); |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{ | ||
"name": "VulDB", | ||
"version": "3.0.6", | ||
"version": "3.0.8", | ||
"main": "./integration.js", | ||
"private": true, | ||
"dependencies": { | ||
"async": "^3.2.4", | ||
"postman-request": "^2.88.1-postman.32" | ||
"async": "^3.2.5", | ||
"postman-request": "^2.88.1-postman.33" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.