UNCLASSIFIED

You need to sign in or sign up before continuing.
Commits (2)
...@@ -240,7 +240,7 @@ ...@@ -240,7 +240,7 @@
<v-row class="justify-content-center" v-else-if="this.cardView === true"> <v-row class="justify-content-center" v-else-if="this.cardView === true">
<v-col <v-col
v-for="(project, index) in filteredProjects" v-for="(project, index) in filteredProjects"
:lg=projectCardColumnLgCount :lg="projectCardColumnLgCount"
:key="index" :key="index"
:project="project" :project="project"
:cols="12" :cols="12"
...@@ -343,9 +343,9 @@ export default { ...@@ -343,9 +343,9 @@ export default {
ErrorMessage, ErrorMessage,
}, },
props: { props: {
projectCardColumnLgCount:{ projectCardColumnLgCount: {
type: Number, type: Number,
default:4, default: 4,
}, },
detailed: { detailed: {
type: Boolean, type: Boolean,
......
...@@ -12,13 +12,14 @@ ...@@ -12,13 +12,14 @@
:refreshClick="refreshProjectData" :refreshClick="refreshProjectData"
> >
<div <div
class="align-items-center d-flex"
slot="header-bar-icons" slot="header-bar-icons"
:cardViewProjects="cardViewProjects" :cardViewProjects="cardViewProjects"
:panelViewProjects="panelViewProjects" :panelViewProjects="panelViewProjects"
> >
<v-tooltip top > <v-tooltip top>
<template v-slot:activator="{ on, attrs }"> <template v-slot:activator="{ on, attrs }">
<v-btn <v-btn
icon icon
v-bind="attrs" v-bind="attrs"
v-on="on" v-on="on"
...@@ -29,7 +30,7 @@ ...@@ -29,7 +30,7 @@
</template> </template>
<span>Card View</span> <span>Card View</span>
</v-tooltip> </v-tooltip>
<v-tooltip top > <v-tooltip top>
<template v-slot:activator="{ on, attrs }"> <template v-slot:activator="{ on, attrs }">
<v-btn <v-btn
icon icon
...@@ -47,7 +48,7 @@ ...@@ -47,7 +48,7 @@
slot="content" slot="content"
ref="projectSummary" ref="projectSummary"
:setProjectLoading="setProjectLoading" :setProjectLoading="setProjectLoading"
:projectCardColumnLgCount=4 :projectCardColumnLgCount="4"
detailed detailed
/> />
</Section> </Section>
......
...@@ -91,7 +91,7 @@ ...@@ -91,7 +91,7 @@
slot="content" slot="content"
ref="projectSummary" ref="projectSummary"
:setProjectLoading="setProjectLoading" :setProjectLoading="setProjectLoading"
:projectCardColumnLgCount=6 :projectCardColumnLgCount="6"
/> />
</Section> </Section>
......