Skip to content
GitLab
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
3d7355ff
Commit
3d7355ff
authored
Aug 26, 2020
by
jackie / Andrea Ida Malkah Klaura
Browse files
fix linting; remove debugging info
parent
a63f9c73
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/App.vue
View file @
3d7355ff
...
...
@@ -55,7 +55,6 @@ export default {
}
},
created
()
{
console
.
log
(
"
auth::init
"
);
this
.
$store
.
dispatch
(
'
auth/oidcInit
'
)
},
methods
:
{
...
...
src/components/FileManager.vue
View file @
3d7355ff
...
...
@@ -78,7 +78,6 @@ export default {
// This switches the UI elements to reflect another show and fetches all
// relevent data from the tank API.
showHasSwitched
()
{
this
.
$log
.
debug
(
'
show has switched to
'
,
this
.
selectedShow
.
name
)
this
.
$store
.
dispatch
(
'
files/fetchFiles
'
,
{
slug
:
this
.
selectedShow
.
slug
})
...
...
src/components/shows/Schedules.vue
View file @
3d7355ff
...
...
@@ -7,8 +7,12 @@
<table
class=
"table b-table table-striped border"
>
<thead>
<tr>
<th
class=
"top-header"
>
Schedules
</th>
<th
class=
"top-header text-right font-weight-normal"
>
{{
schedules
.
length
}}
schedules
</th>
<th
class=
"top-header"
>
Schedules
</th>
<th
class=
"top-header text-right font-weight-normal"
>
{{
schedules
.
length
}}
schedules
</th>
</tr>
</thead>
...
...
@@ -27,12 +31,18 @@
</tbody>
</table>
<div
v-if=
"isExpandable"
class=
"collapser"
>
<div
v-if=
"isExpandable"
class=
"collapser"
>
click to collapse
</div>
</div>
<div
class=
"border p-4 mb-4"
v-else
>
<div
v-else
class=
"border p-4 mb-4"
>
There are currently no schedules for this show.
</div>
</
template
>
...
...
@@ -75,12 +85,10 @@
},
getSchedules
()
{
this
.
$store
.
dispatch
(
'
shows/fetchSchedules
'
,
{
show
:
this
.
selectedShow
.
id
,
callback
:
console
.
log
})
this
.
$store
.
dispatch
(
'
shows/fetchSchedules
'
,
{
show
:
this
.
selectedShow
.
id
})
},
renderRruleForSchedule
(
schedule
)
{
console
.
log
(
uppercaseFirst
(
this
.
rruleRender
(
schedule
.
rrule
)));
if
(
schedule
.
rrule
<
3
)
{
return
uppercaseFirst
(
this
.
rruleRender
(
schedule
.
rrule
))
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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