I'm looking at mediawiki-dashboard/browser/config/project-info.json and mediawiki-dashboard/browser/data/json/project-info.json (which are identical). Both say
```
"its_url":"https://bugzilla.wikimedia.org/",
"its_name":"Mediawiki Product in Bugzilla",
"its_type":"bugzilla",
```
which is wrong nowadays.
@Dicortazar: Are those values only used to create some links on the fly, like in browser/project-card.html via `<a id="its_url" href="">` or in browser/lib/vizgrimoire.min.js via `url=Report.getProjectData().its_url`, or would anything else break if I replaced these values by
```
"its_url":"https://phabricator.wikimedia.org/",
"its_name":"Mediawiki Project in Phabricator/Maniphest",
"its_type":"maniphest",
```
(especially the `its_type` value)? Also, which of the two files to patch?