stable

Clone or download

Read-only

Display current project in breadcrumb if sidebar is collapsed

That way you still know in which project you are. It is needed to be able to remove the project from the navbar (in dedicated commit). Part of story #16210: Remove navbar Change-Id: If43ae63cc2971ef7d394eaf3409c7361a7d3840f

Modified Files

Name
M plugins/document/include/Tree/DocumentTreeController.php +5 −4 Go to diff View file
M plugins/document/include/Tree/DocumentTreePresenter.php +12 −0 Go to diff View file
M plugins/document/scripts/document/components/App.vue +4 −0 Go to diff View file
M plugins/document/scripts/document/components/Breadcrumb/DocumentBreadcrumb.vue +7 −0 Go to diff View file
M plugins/document/scripts/document/index.js +4 −0 Go to diff View file
M plugins/document/scripts/document/store/mutations-global.js +4 −0 Go to diff View file
M plugins/document/scripts/document/store/state.js +3 −0 Go to diff View file
M plugins/document/templates/document-tree.mustache +2 −0 Go to diff View file
M plugins/git/include/Git/RepositoryList/GitRepositoryListController.php +5 −4 Go to diff View file
M plugins/git/include/Git/RepositoryList/GitRepositoryListPresenter.php +13 −0 Go to diff View file
M plugins/git/scripts/repositories/src/breadcrumb-presenter.js +24 −3 Go to diff View file
M plugins/git/scripts/repositories/src/components/GitBreadcrumbs.vue +13 −0 Go to diff View file
M plugins/git/scripts/repositories/src/index.js +10 −2 Go to diff View file
M plugins/git/templates/repositories/repository-list.mustache +2 −0 Go to diff View file
M plugins/testmanagement/include/TestManagement/IndexController.class.php +1 −1 Go to diff View file
M plugins/testmanagement/include/TestManagement/IndexPresenter.class.php +14 −3 Go to diff View file
M plugins/testmanagement/include/TestManagement/Router.class.php +13 −6 Go to diff View file
M plugins/testmanagement/scripts/testmanagement/src/app-controller.js +4 −1 Go to diff View file
M plugins/testmanagement/scripts/testmanagement/src/move-breadcrumb.js +13 −1 Go to diff View file
M plugins/testmanagement/templates/index.mustache +2 −0 Go to diff View file
M src/common/Dashboard/Project/ProjectDashboardController.php +4 −3 Go to diff View file
M src/common/layout/BreadCrumbDropdown/BreadCrumb.php +15 −0 Go to diff View file
M src/common/layout/BreadCrumbDropdown/BreadCrumbCollection.php +5 −0 Go to diff View file
M src/common/layout/BreadCrumbDropdown/BreadCrumbPresenter.php +8 −3 Go to diff View file
M src/common/layout/BreadCrumbDropdown/BreadCrumbPresenterBuilder.php +1 −0 Go to diff View file
M src/templates/common/breadcrumbs/breadcrumbs.mustache +3 −3 Go to diff View file
M src/themes/BurningParrot/css/includes/_breadcrumb.scss +14 −0 Go to diff View file
M src/themes/BurningParrot/include/BurningParrotTheme.php +8 −0 Go to diff View file
M src/themes/BurningParrot/include/HeaderPresenter.php +6 −0 Go to diff View file
M src/themes/FlamingParrot/css/utils/_breadcrumb.scss +14 −0 Go to diff View file
M src/themes/FlamingParrot/include/ContainerPresenter.class.php +12 −4 Go to diff View file
M src/www/themes/FlamingParrot/FlamingParrot_Theme.class.php +6 −0 Go to diff View file