UNCLASSIFIED
Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
Platform One
P
Party Bus
Launchboard
launchboard-fe
Compare Revisions
9e5dbff559b7a3995e56ab211874fe2b02e2fbf2...e0c2657ea868b05410dbeef829a44b19ef0329ae
You need to sign in or sign up before continuing.
Commits (2)
Fixed icon allignment issue for mobile view
· 20b9b97b
Baban Faraj
authored
Aug 30, 2021
20b9b97b
Prettier
· e0c2657e
Baban Faraj
authored
Aug 30, 2021
e0c2657e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
8 deletions
+9
-8
src/components/ProjectsSummary.vue
src/components/ProjectsSummary.vue
+3
-3
src/views/Projects.vue
src/views/Projects.vue
+5
-4
src/views/user/LaunchboardUser.vue
src/views/user/LaunchboardUser.vue
+1
-1
No files found.
src/components/ProjectsSummary.vue
View file @
e0c2657e
...
@@ -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
,
...
...
src/views/Projects.vue
View file @
e0c2657e
...
@@ -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>
...
...
src/views/user/LaunchboardUser.vue
View file @
e0c2657e
...
@@ -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>
...
...