Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
AURA
dashboard
Commits
ccf390c2
Commit
ccf390c2
authored
Feb 13, 2019
by
jackie / Andrea Ida Malkah Klaura
Browse files
FEAT: add image to show settings overview
parent
e0c3c1b0
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/components/ShowManager.vue
View file @
ccf390c2
...
...
@@ -265,6 +265,37 @@
</b-col>
</b-row>
<b-row>
<b-col
lg=
"2"
>
<b-badge
style=
"width:80%;"
>
Logo:
</b-badge>
<img
src=
"../assets/16x16/emblem-system.png"
alt=
"edit"
v-on:click=
"$refs.appModalShow.showLogo()"
/>
</b-col>
<b-col
lg=
"4"
>
<div
v-if=
"shows[currentShow].logo.length === 0"
>
<small><i>
(none set)
</i></small>
</div>
<div
v-else
>
<br
/>
<b-img
thumbnail
:src=
"shows[currentShow].logo"
fluid
v-on:click=
"$refs.appModalShow.showLogo()"
/>
</div>
</b-col>
<b-col
lg=
"2"
>
<b-badge
style=
"width:80%;"
>
Image:
</b-badge>
<img
src=
"../assets/16x16/emblem-system.png"
alt=
"edit"
v-on:click=
"$refs.appModalShow.showImage()"
/>
</b-col>
<b-col
lg=
"4"
>
<div
v-if=
"shows[currentShow].image.length === 0"
>
<small><i>
(none set)
</i></small>
</div>
<div
v-else
>
<br
/>
<b-img
thumbnail
:src=
"shows[currentShow].image"
fluid
v-on:click=
"$refs.appModalShow.showImage()"
/>
</div>
</b-col>
</b-row>
<hr
/>
</div>
</b-container>
</template>
...
...
src/components/ShowManagerModalShow.vue
View file @
ccf390c2
...
...
@@ -666,6 +666,12 @@ export default {
alert
(
'
Error: could not load available hosts
'
)
})
this
.
$refs
.
modalShowHosts
.
show
()
},
showLogo
()
{
alert
(
'
Not yet implemented
'
)
},
showImage
()
{
alert
(
'
Not yet implemented
'
)
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment