├── .dockerignore ├── .editorconfig ├── .env ├── .env.development ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── defect-report.yml │ └── enhancement-request.yml ├── PULL_REQUEST_TEMPLATE.md ├── default-release-notes.md ├── dependabot.yml ├── images │ ├── i18n_i18n-ally-progress.png │ ├── i18n_i18n-ally-translate.png │ ├── i18n_language-picker.png │ ├── release-branch.png │ ├── release-master.png │ └── release-releasebranch.png ├── lock.yml ├── release.yml └── workflows │ ├── _meta-build.yaml │ ├── ci-build.yaml │ ├── ci-publish.yaml │ ├── ci-release.yaml │ ├── codeql-analysis.yaml │ ├── dependency-review.yaml │ ├── i18n.yaml │ └── lint.yaml ├── .gitignore ├── .idea └── icon.svg ├── .npmignore ├── .nvmrc ├── .postcssrc.js ├── .prettierrc.json ├── .vscode ├── extensions.json └── settings.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── RELEASING.md ├── SECURITY.md ├── babel.config.js ├── docker ├── Dockerfile.alpine ├── docker-compose.yml ├── docker-entrypoint.d │ ├── 10-listen-on-ipv6-by-default.sh │ └── 30-oidc-configuration.sh └── etc │ └── nginx │ └── templates │ └── default.conf.template ├── docs └── images │ ├── Frontend-Deployment.svg │ └── Frontend-Deployment.t2d ├── package.json ├── public ├── favicon.ico ├── index.html └── static │ ├── config.json │ └── oidc-callback.html ├── release.sh ├── snapshot.sh ├── src ├── App.vue ├── assets │ ├── .gitkeep │ ├── img │ │ ├── brand │ │ │ ├── dt-logo-symbol.svg │ │ │ ├── dt-logo-vertical-white-text.svg │ │ │ ├── dt-logo-white-text.svg │ │ │ └── owasp-logo-white.svg │ │ ├── github-logo.svg │ │ ├── openid-logo.svg │ │ ├── osi-logo.svg │ │ ├── osv-logo.png │ │ ├── snyk-logo.png │ │ └── trivy-logo.svg │ └── scss │ │ ├── _code.scss │ │ ├── _custom.scss │ │ ├── _ie-fix.scss │ │ ├── _variables.scss │ │ ├── style.scss │ │ └── vendors │ │ ├── _variables.scss │ │ ├── bootstrap │ │ └── _variables.scss │ │ ├── chart.js │ │ └── chart.scss │ │ └── vue-tags-input │ │ └── _vue-tags-input.scss ├── containers │ ├── DefaultContainer.vue │ ├── DefaultFooter.vue │ ├── DefaultHeader.vue │ └── DefaultHeaderProfileDropdown.vue ├── directives │ └── VuePermission.js ├── forms │ ├── BInputGroupFormDatepicker.vue │ ├── BInputGroupFormInput.vue │ ├── BInputGroupFormSelect.vue │ ├── BInputGroupFormSwitch.vue │ └── BValidatedInputGroupFormInput.vue ├── i18n │ ├── index.js │ └── locales │ │ ├── de.json │ │ ├── en.json │ │ ├── es.json │ │ ├── fr.json │ │ ├── hi.json │ │ ├── it.json │ │ ├── ja.json │ │ ├── pl.json │ │ ├── pt-BR.json │ │ ├── pt.json │ │ ├── ru.json │ │ ├── uk-UA.json │ │ └── zh.json ├── main.js ├── mixins │ ├── availableClassifiersMixin.js │ ├── availableCollectionLogicsMixin.js │ ├── bootstrapTableMixin.js │ ├── globalVarsMixin.js │ ├── permissionsMixin.js │ └── routerMixin.js ├── plugins │ ├── jquery.js │ └── table.js ├── router │ └── index.js ├── shared │ ├── api.json │ ├── classes.js │ ├── common.js │ ├── eventbus.js │ ├── oidc.json │ ├── permissions.js │ ├── toggle-classes.js │ └── utils.js ├── validation │ └── index.js └── views │ ├── Dashboard.vue │ ├── administration │ ├── AdminMenu.vue │ ├── Administration.vue │ ├── accessmanagement │ │ ├── ApiKeyListGroupItem.vue │ │ ├── ChangePasswordModal.vue │ │ ├── CreateLdapUserModal.vue │ │ ├── CreateManagedUserModal.vue │ │ ├── CreateOidcGroupModal.vue │ │ ├── CreateOidcUserModal.vue │ │ ├── CreateTeamModal.vue │ │ ├── EditApiKeyCommentModal.vue │ │ ├── LdapUsers.vue │ │ ├── ManagedUsers.vue │ │ ├── OidcGroups.vue │ │ ├── OidcUsers.vue │ │ ├── Permissions.vue │ │ ├── PortfolioAccessControl.vue │ │ ├── SelectLdapGroupModal.vue │ │ ├── SelectOidcGroupModal.vue │ │ ├── SelectPermissionModal.vue │ │ ├── SelectProjectModal.vue │ │ ├── SelectTeamModal.vue │ │ └── Teams.vue │ ├── analyzers │ │ ├── InternalAnalyzer.vue │ │ ├── OssIndexAnalyzer.vue │ │ ├── SnykAnalyzer.vue │ │ ├── TrivyAnalyzer.vue │ │ └── VulnDbAnalyzer.vue │ ├── configuration │ │ ├── BomFormats.vue │ │ ├── Email.vue │ │ ├── EmailTestConfigurationModal.vue │ │ ├── Experimental.vue │ │ ├── General.vue │ │ ├── InternalComponents.vue │ │ ├── JiraConfig.vue │ │ ├── Search.vue │ │ ├── TaskScheduler.vue │ │ ├── Telemetry.vue │ │ └── WelcomeMessage.vue │ ├── integrations │ │ ├── DefectDojo.vue │ │ ├── FortifySsc.vue │ │ └── KennaSecurity.vue │ ├── mixins │ │ └── configPropertyMixin.js │ ├── notifications │ │ ├── Alerts.vue │ │ ├── CreateAlertModal.vue │ │ ├── CreateTemplateModal.vue │ │ ├── GeneralTemplateConfigurationModal.vue │ │ └── Templates.vue │ ├── repositories │ │ ├── Cargo.vue │ │ ├── Composer.vue │ │ ├── Cpan.vue │ │ ├── Gem.vue │ │ ├── GitHub.vue │ │ ├── GoModules.vue │ │ ├── Hackage.vue │ │ ├── Hex.vue │ │ ├── Maven.vue │ │ ├── Nixpkgs.vue │ │ ├── Npm.vue │ │ ├── Nuget.vue │ │ ├── Python.vue │ │ ├── Repositories.vue │ │ └── RepositoryCreateRepositoryModal.vue │ └── vuln-sources │ │ ├── EcosystemModal.vue │ │ ├── VulnSourceGitHubAdvisories.vue │ │ ├── VulnSourceNvd.vue │ │ └── VulnSourceOSVAdvisories.vue │ ├── audit │ └── PolicyViolationAudit.vue │ ├── components │ ├── AboutModal.vue │ ├── ActionableListGroupItem.vue │ ├── BToggleableDisplayButton.vue │ ├── ExternalReferencesDropdown.vue │ ├── LocalePicker.vue │ ├── PolicyViolationProgressBar.vue │ ├── ProfileEditModal.vue │ ├── SeverityProgressBar.vue │ ├── Showdown.vue │ └── SnapshotModal.vue │ ├── dashboard │ ├── ChartAuditingFindingsProgress.vue │ ├── ChartAuditingViolationsProgress.vue │ ├── ChartComponentVulnerabilities.vue │ ├── ChartEpssVsCvss.vue │ ├── ChartPolicyViolationBreakdown.vue │ ├── ChartPolicyViolationsClassification.vue │ ├── ChartPolicyViolationsState.vue │ ├── ChartPortfolioVulnerabilities.vue │ ├── ChartProjectVulnerabilities.vue │ ├── PortfolioWidgetRow.vue │ ├── SeverityBarChart.vue │ ├── WidgetInheritedRiskScore.vue │ ├── WidgetPortfolioVulnerabilities.vue │ ├── WidgetProjectsAtRisk.vue │ └── WidgetVulnerableComponents.vue │ ├── globalAudit │ ├── VulnerabilityAudit.vue │ ├── VulnerabilityAuditByOccurrence.vue │ └── VulnerabilityAuditGroupedByVulnerability.vue │ ├── modals │ └── InformationalModal.vue │ ├── pages │ ├── Login.vue │ ├── Page404.vue │ └── PasswordForceChange.vue │ ├── policy │ ├── CreateLicenseGroupModal.vue │ ├── CreatePolicyModal.vue │ ├── LicenseGroupList.vue │ ├── PolicyCondition.vue │ ├── PolicyList.vue │ ├── PolicyManagement.vue │ └── SelectLicenseModal.vue │ └── portfolio │ ├── components │ └── ComponentSearch.vue │ ├── licenses │ ├── License.vue │ ├── LicenseAddLicenseModal.vue │ └── LicenseList.vue │ ├── projects │ ├── Component.vue │ ├── ComponentCreatePropertyModal.vue │ ├── ComponentDashboard.vue │ ├── ComponentDetailsModal.vue │ ├── ComponentPropertiesModal.vue │ ├── ComponentVulnerabilities.vue │ ├── FindingAudit.vue │ ├── Project.vue │ ├── ProjectAddComponentModal.vue │ ├── ProjectAddVersionModal.vue │ ├── ProjectCollectionProjects.vue │ ├── ProjectComponents.vue │ ├── ProjectCreateProjectModal.vue │ ├── ProjectCreatePropertyModal.vue │ ├── ProjectDashboard.vue │ ├── ProjectDependencyGraph.vue │ ├── ProjectDetailsModal.vue │ ├── ProjectEpss.vue │ ├── ProjectFindings.vue │ ├── ProjectList.vue │ ├── ProjectListView.vue │ ├── ProjectPolicyViolations.vue │ ├── ProjectPropertiesModal.vue │ ├── ProjectServices.vue │ ├── ProjectUploadBomModal.vue │ ├── ProjectUploadVexModal.vue │ ├── SelectProjectModal.vue │ ├── Service.vue │ ├── ServiceDashboard.vue │ └── ServiceDetailsModal.vue │ ├── tags │ ├── SelectTagModal.vue │ ├── TagList.vue │ ├── TaggedCollectionProjectListModal.vue │ ├── TaggedNotificationRuleListModal.vue │ ├── TaggedPoliciesListModal.vue │ └── TaggedProjectListModal.vue │ └── vulnerabilities │ ├── AddAffectedComponentModal.vue │ ├── AffectedProjects.vue │ ├── SelectCweModal.vue │ ├── Vulnerability.vue │ ├── VulnerabilityCreateVulnerabilityModal.vue │ ├── VulnerabilityDetailsModal.vue │ └── VulnerabilityList.vue ├── update-embedded-version.js ├── vue-i18n-extract.config.js └── vue.config.js /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.env -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.env.development -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/defect-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.github/ISSUE_TEMPLATE/defect-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.github/ISSUE_TEMPLATE/enhancement-request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/default-release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.github/default-release-notes.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/images/i18n_i18n-ally-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.github/images/i18n_i18n-ally-progress.png -------------------------------------------------------------------------------- /.github/images/i18n_i18n-ally-translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.github/images/i18n_i18n-ally-translate.png -------------------------------------------------------------------------------- /.github/images/i18n_language-picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.github/images/i18n_language-picker.png -------------------------------------------------------------------------------- /.github/images/release-branch.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/images/release-master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.github/images/release-master.png -------------------------------------------------------------------------------- /.github/images/release-releasebranch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.github/images/release-releasebranch.png -------------------------------------------------------------------------------- /.github/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.github/lock.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/_meta-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.github/workflows/_meta-build.yaml -------------------------------------------------------------------------------- /.github/workflows/ci-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.github/workflows/ci-build.yaml -------------------------------------------------------------------------------- /.github/workflows/ci-publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.github/workflows/ci-publish.yaml -------------------------------------------------------------------------------- /.github/workflows/ci-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.github/workflows/ci-release.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.github/workflows/codeql-analysis.yaml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.github/workflows/dependency-review.yaml -------------------------------------------------------------------------------- /.github/workflows/i18n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.github/workflows/i18n.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.idea/icon.svg -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/RELEASING.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/SECURITY.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/babel.config.js -------------------------------------------------------------------------------- /docker/Dockerfile.alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/docker/Dockerfile.alpine -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/docker-entrypoint.d/10-listen-on-ipv6-by-default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/docker/docker-entrypoint.d/10-listen-on-ipv6-by-default.sh -------------------------------------------------------------------------------- /docker/docker-entrypoint.d/30-oidc-configuration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/docker/docker-entrypoint.d/30-oidc-configuration.sh -------------------------------------------------------------------------------- /docker/etc/nginx/templates/default.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/docker/etc/nginx/templates/default.conf.template -------------------------------------------------------------------------------- /docs/images/Frontend-Deployment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/docs/images/Frontend-Deployment.svg -------------------------------------------------------------------------------- /docs/images/Frontend-Deployment.t2d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/docs/images/Frontend-Deployment.t2d -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/public/index.html -------------------------------------------------------------------------------- /public/static/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/public/static/config.json -------------------------------------------------------------------------------- /public/static/oidc-callback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/public/static/oidc-callback.html -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/release.sh -------------------------------------------------------------------------------- /snapshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/snapshot.sh -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/img/brand/dt-logo-symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/assets/img/brand/dt-logo-symbol.svg -------------------------------------------------------------------------------- /src/assets/img/brand/dt-logo-vertical-white-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/assets/img/brand/dt-logo-vertical-white-text.svg -------------------------------------------------------------------------------- /src/assets/img/brand/dt-logo-white-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/assets/img/brand/dt-logo-white-text.svg -------------------------------------------------------------------------------- /src/assets/img/brand/owasp-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/assets/img/brand/owasp-logo-white.svg -------------------------------------------------------------------------------- /src/assets/img/github-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/assets/img/github-logo.svg -------------------------------------------------------------------------------- /src/assets/img/openid-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/assets/img/openid-logo.svg -------------------------------------------------------------------------------- /src/assets/img/osi-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/assets/img/osi-logo.svg -------------------------------------------------------------------------------- /src/assets/img/osv-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/assets/img/osv-logo.png -------------------------------------------------------------------------------- /src/assets/img/snyk-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/assets/img/snyk-logo.png -------------------------------------------------------------------------------- /src/assets/img/trivy-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/assets/img/trivy-logo.svg -------------------------------------------------------------------------------- /src/assets/scss/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/assets/scss/_code.scss -------------------------------------------------------------------------------- /src/assets/scss/_custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/assets/scss/_custom.scss -------------------------------------------------------------------------------- /src/assets/scss/_ie-fix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/assets/scss/_ie-fix.scss -------------------------------------------------------------------------------- /src/assets/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/assets/scss/_variables.scss -------------------------------------------------------------------------------- /src/assets/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/assets/scss/style.scss -------------------------------------------------------------------------------- /src/assets/scss/vendors/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/assets/scss/vendors/_variables.scss -------------------------------------------------------------------------------- /src/assets/scss/vendors/bootstrap/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/assets/scss/vendors/bootstrap/_variables.scss -------------------------------------------------------------------------------- /src/assets/scss/vendors/chart.js/chart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/assets/scss/vendors/chart.js/chart.scss -------------------------------------------------------------------------------- /src/assets/scss/vendors/vue-tags-input/_vue-tags-input.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/assets/scss/vendors/vue-tags-input/_vue-tags-input.scss -------------------------------------------------------------------------------- /src/containers/DefaultContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/containers/DefaultContainer.vue -------------------------------------------------------------------------------- /src/containers/DefaultFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/containers/DefaultFooter.vue -------------------------------------------------------------------------------- /src/containers/DefaultHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/containers/DefaultHeader.vue -------------------------------------------------------------------------------- /src/containers/DefaultHeaderProfileDropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/containers/DefaultHeaderProfileDropdown.vue -------------------------------------------------------------------------------- /src/directives/VuePermission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/directives/VuePermission.js -------------------------------------------------------------------------------- /src/forms/BInputGroupFormDatepicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/forms/BInputGroupFormDatepicker.vue -------------------------------------------------------------------------------- /src/forms/BInputGroupFormInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/forms/BInputGroupFormInput.vue -------------------------------------------------------------------------------- /src/forms/BInputGroupFormSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/forms/BInputGroupFormSelect.vue -------------------------------------------------------------------------------- /src/forms/BInputGroupFormSwitch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/forms/BInputGroupFormSwitch.vue -------------------------------------------------------------------------------- /src/forms/BValidatedInputGroupFormInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/forms/BValidatedInputGroupFormInput.vue -------------------------------------------------------------------------------- /src/i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/i18n/index.js -------------------------------------------------------------------------------- /src/i18n/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/i18n/locales/de.json -------------------------------------------------------------------------------- /src/i18n/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/i18n/locales/en.json -------------------------------------------------------------------------------- /src/i18n/locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/i18n/locales/es.json -------------------------------------------------------------------------------- /src/i18n/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/i18n/locales/fr.json -------------------------------------------------------------------------------- /src/i18n/locales/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/i18n/locales/hi.json -------------------------------------------------------------------------------- /src/i18n/locales/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/i18n/locales/it.json -------------------------------------------------------------------------------- /src/i18n/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/i18n/locales/ja.json -------------------------------------------------------------------------------- /src/i18n/locales/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/i18n/locales/pl.json -------------------------------------------------------------------------------- /src/i18n/locales/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/i18n/locales/pt-BR.json -------------------------------------------------------------------------------- /src/i18n/locales/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/i18n/locales/pt.json -------------------------------------------------------------------------------- /src/i18n/locales/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/i18n/locales/ru.json -------------------------------------------------------------------------------- /src/i18n/locales/uk-UA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/i18n/locales/uk-UA.json -------------------------------------------------------------------------------- /src/i18n/locales/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/i18n/locales/zh.json -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/main.js -------------------------------------------------------------------------------- /src/mixins/availableClassifiersMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/mixins/availableClassifiersMixin.js -------------------------------------------------------------------------------- /src/mixins/availableCollectionLogicsMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/mixins/availableCollectionLogicsMixin.js -------------------------------------------------------------------------------- /src/mixins/bootstrapTableMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/mixins/bootstrapTableMixin.js -------------------------------------------------------------------------------- /src/mixins/globalVarsMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/mixins/globalVarsMixin.js -------------------------------------------------------------------------------- /src/mixins/permissionsMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/mixins/permissionsMixin.js -------------------------------------------------------------------------------- /src/mixins/routerMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/mixins/routerMixin.js -------------------------------------------------------------------------------- /src/plugins/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/plugins/jquery.js -------------------------------------------------------------------------------- /src/plugins/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/plugins/table.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/shared/api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/shared/api.json -------------------------------------------------------------------------------- /src/shared/classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/shared/classes.js -------------------------------------------------------------------------------- /src/shared/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/shared/common.js -------------------------------------------------------------------------------- /src/shared/eventbus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/shared/eventbus.js -------------------------------------------------------------------------------- /src/shared/oidc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/shared/oidc.json -------------------------------------------------------------------------------- /src/shared/permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/shared/permissions.js -------------------------------------------------------------------------------- /src/shared/toggle-classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/shared/toggle-classes.js -------------------------------------------------------------------------------- /src/shared/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/shared/utils.js -------------------------------------------------------------------------------- /src/validation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/validation/index.js -------------------------------------------------------------------------------- /src/views/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/Dashboard.vue -------------------------------------------------------------------------------- /src/views/administration/AdminMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/AdminMenu.vue -------------------------------------------------------------------------------- /src/views/administration/Administration.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/Administration.vue -------------------------------------------------------------------------------- /src/views/administration/accessmanagement/ApiKeyListGroupItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/accessmanagement/ApiKeyListGroupItem.vue -------------------------------------------------------------------------------- /src/views/administration/accessmanagement/ChangePasswordModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/accessmanagement/ChangePasswordModal.vue -------------------------------------------------------------------------------- /src/views/administration/accessmanagement/CreateLdapUserModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/accessmanagement/CreateLdapUserModal.vue -------------------------------------------------------------------------------- /src/views/administration/accessmanagement/CreateManagedUserModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/accessmanagement/CreateManagedUserModal.vue -------------------------------------------------------------------------------- /src/views/administration/accessmanagement/CreateOidcGroupModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/accessmanagement/CreateOidcGroupModal.vue -------------------------------------------------------------------------------- /src/views/administration/accessmanagement/CreateOidcUserModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/accessmanagement/CreateOidcUserModal.vue -------------------------------------------------------------------------------- /src/views/administration/accessmanagement/CreateTeamModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/accessmanagement/CreateTeamModal.vue -------------------------------------------------------------------------------- /src/views/administration/accessmanagement/EditApiKeyCommentModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/accessmanagement/EditApiKeyCommentModal.vue -------------------------------------------------------------------------------- /src/views/administration/accessmanagement/LdapUsers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/accessmanagement/LdapUsers.vue -------------------------------------------------------------------------------- /src/views/administration/accessmanagement/ManagedUsers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/accessmanagement/ManagedUsers.vue -------------------------------------------------------------------------------- /src/views/administration/accessmanagement/OidcGroups.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/accessmanagement/OidcGroups.vue -------------------------------------------------------------------------------- /src/views/administration/accessmanagement/OidcUsers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/accessmanagement/OidcUsers.vue -------------------------------------------------------------------------------- /src/views/administration/accessmanagement/Permissions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/accessmanagement/Permissions.vue -------------------------------------------------------------------------------- /src/views/administration/accessmanagement/PortfolioAccessControl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/accessmanagement/PortfolioAccessControl.vue -------------------------------------------------------------------------------- /src/views/administration/accessmanagement/SelectLdapGroupModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/accessmanagement/SelectLdapGroupModal.vue -------------------------------------------------------------------------------- /src/views/administration/accessmanagement/SelectOidcGroupModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/accessmanagement/SelectOidcGroupModal.vue -------------------------------------------------------------------------------- /src/views/administration/accessmanagement/SelectPermissionModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/accessmanagement/SelectPermissionModal.vue -------------------------------------------------------------------------------- /src/views/administration/accessmanagement/SelectProjectModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/accessmanagement/SelectProjectModal.vue -------------------------------------------------------------------------------- /src/views/administration/accessmanagement/SelectTeamModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/accessmanagement/SelectTeamModal.vue -------------------------------------------------------------------------------- /src/views/administration/accessmanagement/Teams.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/accessmanagement/Teams.vue -------------------------------------------------------------------------------- /src/views/administration/analyzers/InternalAnalyzer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/analyzers/InternalAnalyzer.vue -------------------------------------------------------------------------------- /src/views/administration/analyzers/OssIndexAnalyzer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/analyzers/OssIndexAnalyzer.vue -------------------------------------------------------------------------------- /src/views/administration/analyzers/SnykAnalyzer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/analyzers/SnykAnalyzer.vue -------------------------------------------------------------------------------- /src/views/administration/analyzers/TrivyAnalyzer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/analyzers/TrivyAnalyzer.vue -------------------------------------------------------------------------------- /src/views/administration/analyzers/VulnDbAnalyzer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/analyzers/VulnDbAnalyzer.vue -------------------------------------------------------------------------------- /src/views/administration/configuration/BomFormats.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/configuration/BomFormats.vue -------------------------------------------------------------------------------- /src/views/administration/configuration/Email.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/configuration/Email.vue -------------------------------------------------------------------------------- /src/views/administration/configuration/EmailTestConfigurationModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/configuration/EmailTestConfigurationModal.vue -------------------------------------------------------------------------------- /src/views/administration/configuration/Experimental.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/configuration/Experimental.vue -------------------------------------------------------------------------------- /src/views/administration/configuration/General.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/configuration/General.vue -------------------------------------------------------------------------------- /src/views/administration/configuration/InternalComponents.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/configuration/InternalComponents.vue -------------------------------------------------------------------------------- /src/views/administration/configuration/JiraConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/configuration/JiraConfig.vue -------------------------------------------------------------------------------- /src/views/administration/configuration/Search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/configuration/Search.vue -------------------------------------------------------------------------------- /src/views/administration/configuration/TaskScheduler.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/configuration/TaskScheduler.vue -------------------------------------------------------------------------------- /src/views/administration/configuration/Telemetry.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/configuration/Telemetry.vue -------------------------------------------------------------------------------- /src/views/administration/configuration/WelcomeMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/configuration/WelcomeMessage.vue -------------------------------------------------------------------------------- /src/views/administration/integrations/DefectDojo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/integrations/DefectDojo.vue -------------------------------------------------------------------------------- /src/views/administration/integrations/FortifySsc.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/integrations/FortifySsc.vue -------------------------------------------------------------------------------- /src/views/administration/integrations/KennaSecurity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/integrations/KennaSecurity.vue -------------------------------------------------------------------------------- /src/views/administration/mixins/configPropertyMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/mixins/configPropertyMixin.js -------------------------------------------------------------------------------- /src/views/administration/notifications/Alerts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/notifications/Alerts.vue -------------------------------------------------------------------------------- /src/views/administration/notifications/CreateAlertModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/notifications/CreateAlertModal.vue -------------------------------------------------------------------------------- /src/views/administration/notifications/CreateTemplateModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/notifications/CreateTemplateModal.vue -------------------------------------------------------------------------------- /src/views/administration/notifications/GeneralTemplateConfigurationModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/notifications/GeneralTemplateConfigurationModal.vue -------------------------------------------------------------------------------- /src/views/administration/notifications/Templates.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/notifications/Templates.vue -------------------------------------------------------------------------------- /src/views/administration/repositories/Cargo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/repositories/Cargo.vue -------------------------------------------------------------------------------- /src/views/administration/repositories/Composer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/repositories/Composer.vue -------------------------------------------------------------------------------- /src/views/administration/repositories/Cpan.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/repositories/Cpan.vue -------------------------------------------------------------------------------- /src/views/administration/repositories/Gem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/repositories/Gem.vue -------------------------------------------------------------------------------- /src/views/administration/repositories/GitHub.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/repositories/GitHub.vue -------------------------------------------------------------------------------- /src/views/administration/repositories/GoModules.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/repositories/GoModules.vue -------------------------------------------------------------------------------- /src/views/administration/repositories/Hackage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/repositories/Hackage.vue -------------------------------------------------------------------------------- /src/views/administration/repositories/Hex.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/repositories/Hex.vue -------------------------------------------------------------------------------- /src/views/administration/repositories/Maven.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/repositories/Maven.vue -------------------------------------------------------------------------------- /src/views/administration/repositories/Nixpkgs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/repositories/Nixpkgs.vue -------------------------------------------------------------------------------- /src/views/administration/repositories/Npm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/repositories/Npm.vue -------------------------------------------------------------------------------- /src/views/administration/repositories/Nuget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/repositories/Nuget.vue -------------------------------------------------------------------------------- /src/views/administration/repositories/Python.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/repositories/Python.vue -------------------------------------------------------------------------------- /src/views/administration/repositories/Repositories.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/repositories/Repositories.vue -------------------------------------------------------------------------------- /src/views/administration/repositories/RepositoryCreateRepositoryModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/repositories/RepositoryCreateRepositoryModal.vue -------------------------------------------------------------------------------- /src/views/administration/vuln-sources/EcosystemModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/vuln-sources/EcosystemModal.vue -------------------------------------------------------------------------------- /src/views/administration/vuln-sources/VulnSourceGitHubAdvisories.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/vuln-sources/VulnSourceGitHubAdvisories.vue -------------------------------------------------------------------------------- /src/views/administration/vuln-sources/VulnSourceNvd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/vuln-sources/VulnSourceNvd.vue -------------------------------------------------------------------------------- /src/views/administration/vuln-sources/VulnSourceOSVAdvisories.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/administration/vuln-sources/VulnSourceOSVAdvisories.vue -------------------------------------------------------------------------------- /src/views/audit/PolicyViolationAudit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/audit/PolicyViolationAudit.vue -------------------------------------------------------------------------------- /src/views/components/AboutModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/components/AboutModal.vue -------------------------------------------------------------------------------- /src/views/components/ActionableListGroupItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/components/ActionableListGroupItem.vue -------------------------------------------------------------------------------- /src/views/components/BToggleableDisplayButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/components/BToggleableDisplayButton.vue -------------------------------------------------------------------------------- /src/views/components/ExternalReferencesDropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/components/ExternalReferencesDropdown.vue -------------------------------------------------------------------------------- /src/views/components/LocalePicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/components/LocalePicker.vue -------------------------------------------------------------------------------- /src/views/components/PolicyViolationProgressBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/components/PolicyViolationProgressBar.vue -------------------------------------------------------------------------------- /src/views/components/ProfileEditModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/components/ProfileEditModal.vue -------------------------------------------------------------------------------- /src/views/components/SeverityProgressBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/components/SeverityProgressBar.vue -------------------------------------------------------------------------------- /src/views/components/Showdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/components/Showdown.vue -------------------------------------------------------------------------------- /src/views/components/SnapshotModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/components/SnapshotModal.vue -------------------------------------------------------------------------------- /src/views/dashboard/ChartAuditingFindingsProgress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/dashboard/ChartAuditingFindingsProgress.vue -------------------------------------------------------------------------------- /src/views/dashboard/ChartAuditingViolationsProgress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/dashboard/ChartAuditingViolationsProgress.vue -------------------------------------------------------------------------------- /src/views/dashboard/ChartComponentVulnerabilities.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/dashboard/ChartComponentVulnerabilities.vue -------------------------------------------------------------------------------- /src/views/dashboard/ChartEpssVsCvss.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/dashboard/ChartEpssVsCvss.vue -------------------------------------------------------------------------------- /src/views/dashboard/ChartPolicyViolationBreakdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/dashboard/ChartPolicyViolationBreakdown.vue -------------------------------------------------------------------------------- /src/views/dashboard/ChartPolicyViolationsClassification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/dashboard/ChartPolicyViolationsClassification.vue -------------------------------------------------------------------------------- /src/views/dashboard/ChartPolicyViolationsState.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/dashboard/ChartPolicyViolationsState.vue -------------------------------------------------------------------------------- /src/views/dashboard/ChartPortfolioVulnerabilities.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/dashboard/ChartPortfolioVulnerabilities.vue -------------------------------------------------------------------------------- /src/views/dashboard/ChartProjectVulnerabilities.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/dashboard/ChartProjectVulnerabilities.vue -------------------------------------------------------------------------------- /src/views/dashboard/PortfolioWidgetRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/dashboard/PortfolioWidgetRow.vue -------------------------------------------------------------------------------- /src/views/dashboard/SeverityBarChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/dashboard/SeverityBarChart.vue -------------------------------------------------------------------------------- /src/views/dashboard/WidgetInheritedRiskScore.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/dashboard/WidgetInheritedRiskScore.vue -------------------------------------------------------------------------------- /src/views/dashboard/WidgetPortfolioVulnerabilities.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/dashboard/WidgetPortfolioVulnerabilities.vue -------------------------------------------------------------------------------- /src/views/dashboard/WidgetProjectsAtRisk.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/dashboard/WidgetProjectsAtRisk.vue -------------------------------------------------------------------------------- /src/views/dashboard/WidgetVulnerableComponents.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/dashboard/WidgetVulnerableComponents.vue -------------------------------------------------------------------------------- /src/views/globalAudit/VulnerabilityAudit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/globalAudit/VulnerabilityAudit.vue -------------------------------------------------------------------------------- /src/views/globalAudit/VulnerabilityAuditByOccurrence.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/globalAudit/VulnerabilityAuditByOccurrence.vue -------------------------------------------------------------------------------- /src/views/globalAudit/VulnerabilityAuditGroupedByVulnerability.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/globalAudit/VulnerabilityAuditGroupedByVulnerability.vue -------------------------------------------------------------------------------- /src/views/modals/InformationalModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/modals/InformationalModal.vue -------------------------------------------------------------------------------- /src/views/pages/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/pages/Login.vue -------------------------------------------------------------------------------- /src/views/pages/Page404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/pages/Page404.vue -------------------------------------------------------------------------------- /src/views/pages/PasswordForceChange.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/pages/PasswordForceChange.vue -------------------------------------------------------------------------------- /src/views/policy/CreateLicenseGroupModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/policy/CreateLicenseGroupModal.vue -------------------------------------------------------------------------------- /src/views/policy/CreatePolicyModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/policy/CreatePolicyModal.vue -------------------------------------------------------------------------------- /src/views/policy/LicenseGroupList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/policy/LicenseGroupList.vue -------------------------------------------------------------------------------- /src/views/policy/PolicyCondition.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/policy/PolicyCondition.vue -------------------------------------------------------------------------------- /src/views/policy/PolicyList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/policy/PolicyList.vue -------------------------------------------------------------------------------- /src/views/policy/PolicyManagement.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/policy/PolicyManagement.vue -------------------------------------------------------------------------------- /src/views/policy/SelectLicenseModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/policy/SelectLicenseModal.vue -------------------------------------------------------------------------------- /src/views/portfolio/components/ComponentSearch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/components/ComponentSearch.vue -------------------------------------------------------------------------------- /src/views/portfolio/licenses/License.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/licenses/License.vue -------------------------------------------------------------------------------- /src/views/portfolio/licenses/LicenseAddLicenseModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/licenses/LicenseAddLicenseModal.vue -------------------------------------------------------------------------------- /src/views/portfolio/licenses/LicenseList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/licenses/LicenseList.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/Component.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/Component.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/ComponentCreatePropertyModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/ComponentCreatePropertyModal.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/ComponentDashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/ComponentDashboard.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/ComponentDetailsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/ComponentDetailsModal.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/ComponentPropertiesModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/ComponentPropertiesModal.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/ComponentVulnerabilities.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/ComponentVulnerabilities.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/FindingAudit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/FindingAudit.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/Project.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/Project.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/ProjectAddComponentModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/ProjectAddComponentModal.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/ProjectAddVersionModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/ProjectAddVersionModal.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/ProjectCollectionProjects.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/ProjectCollectionProjects.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/ProjectComponents.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/ProjectComponents.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/ProjectCreateProjectModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/ProjectCreateProjectModal.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/ProjectCreatePropertyModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/ProjectCreatePropertyModal.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/ProjectDashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/ProjectDashboard.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/ProjectDependencyGraph.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/ProjectDependencyGraph.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/ProjectDetailsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/ProjectDetailsModal.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/ProjectEpss.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/ProjectEpss.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/ProjectFindings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/ProjectFindings.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/ProjectList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/ProjectList.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/ProjectListView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/ProjectListView.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/ProjectPolicyViolations.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/ProjectPolicyViolations.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/ProjectPropertiesModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/ProjectPropertiesModal.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/ProjectServices.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/ProjectServices.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/ProjectUploadBomModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/ProjectUploadBomModal.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/ProjectUploadVexModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/ProjectUploadVexModal.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/SelectProjectModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/SelectProjectModal.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/Service.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/Service.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/ServiceDashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/ServiceDashboard.vue -------------------------------------------------------------------------------- /src/views/portfolio/projects/ServiceDetailsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/projects/ServiceDetailsModal.vue -------------------------------------------------------------------------------- /src/views/portfolio/tags/SelectTagModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/tags/SelectTagModal.vue -------------------------------------------------------------------------------- /src/views/portfolio/tags/TagList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/tags/TagList.vue -------------------------------------------------------------------------------- /src/views/portfolio/tags/TaggedCollectionProjectListModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/tags/TaggedCollectionProjectListModal.vue -------------------------------------------------------------------------------- /src/views/portfolio/tags/TaggedNotificationRuleListModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/tags/TaggedNotificationRuleListModal.vue -------------------------------------------------------------------------------- /src/views/portfolio/tags/TaggedPoliciesListModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/tags/TaggedPoliciesListModal.vue -------------------------------------------------------------------------------- /src/views/portfolio/tags/TaggedProjectListModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/tags/TaggedProjectListModal.vue -------------------------------------------------------------------------------- /src/views/portfolio/vulnerabilities/AddAffectedComponentModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/vulnerabilities/AddAffectedComponentModal.vue -------------------------------------------------------------------------------- /src/views/portfolio/vulnerabilities/AffectedProjects.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/vulnerabilities/AffectedProjects.vue -------------------------------------------------------------------------------- /src/views/portfolio/vulnerabilities/SelectCweModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/vulnerabilities/SelectCweModal.vue -------------------------------------------------------------------------------- /src/views/portfolio/vulnerabilities/Vulnerability.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/vulnerabilities/Vulnerability.vue -------------------------------------------------------------------------------- /src/views/portfolio/vulnerabilities/VulnerabilityCreateVulnerabilityModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/vulnerabilities/VulnerabilityCreateVulnerabilityModal.vue -------------------------------------------------------------------------------- /src/views/portfolio/vulnerabilities/VulnerabilityDetailsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/vulnerabilities/VulnerabilityDetailsModal.vue -------------------------------------------------------------------------------- /src/views/portfolio/vulnerabilities/VulnerabilityList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/src/views/portfolio/vulnerabilities/VulnerabilityList.vue -------------------------------------------------------------------------------- /update-embedded-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/update-embedded-version.js -------------------------------------------------------------------------------- /vue-i18n-extract.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/vue-i18n-extract.config.js -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DependencyTrack/frontend/HEAD/vue.config.js --------------------------------------------------------------------------------