-
-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Made project list reusable independent from the project list view * Reused project list to show children of collection projects in project view * Hide tabs without function in collection projects, show child projects instead * visually mark collection projects in project header and explain logic used in tooltip Signed-off-by: Ralf King <[email protected]>
- Loading branch information
Showing
8 changed files
with
121 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
src/views/portfolio/projects/ProjectCollectionProjects.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<template> | ||
<project-list :parentProject="this.project" :uuid="this.uuid"></project-list> | ||
</template> | ||
|
||
<script> | ||
import ProjectList from "@/views/portfolio/projects/ProjectList.vue"; | ||
export default { | ||
components: { | ||
ProjectList | ||
}, | ||
props: { | ||
uuid: String, | ||
project: Object, | ||
} | ||
}; | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<template> | ||
<div class="animated fadeIn" v-permission="'VIEW_PORTFOLIO'"> | ||
<portfolio-widget-row :fetch="true" /> | ||
<project-list></project-list> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import PortfolioWidgetRow from "@/views/dashboard/PortfolioWidgetRow.vue"; | ||
import ProjectList from "@/views/portfolio/projects/ProjectList.vue"; | ||
export default { | ||
components: {ProjectList, PortfolioWidgetRow} | ||
} | ||
</script> |