* disabled kanban board
This commit is contained in:
parent
8130297e9a
commit
30bfd7b32c
@ -2,7 +2,7 @@
|
|||||||
<h1 class="ui dividing header">Dashboard</h1>
|
<h1 class="ui dividing header">Dashboard</h1>
|
||||||
|
|
||||||
<div class="ui four cards">
|
<div class="ui four cards">
|
||||||
<a class="ui raised yellow card" [routerLink]="['/kanban']">
|
<a class="ui raised yellow card" [routerLink]="['/commit-tracker']">
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<div class="header">Start slideshow</div>
|
<div class="header">Start slideshow</div>
|
||||||
<div class="meta">
|
<div class="meta">
|
||||||
|
|||||||
@ -19,9 +19,9 @@ export class SlideShowService {
|
|||||||
|
|
||||||
public nextSlide() {
|
public nextSlide() {
|
||||||
if (this.currentSlideIndex === this.slides.length - 1) {
|
if (this.currentSlideIndex === this.slides.length - 1) {
|
||||||
this.currentSlideIndex++;
|
// this.currentSlideIndex++;
|
||||||
this.router.navigate(['/kanban']);
|
// this.router.navigate(['/kanban']);
|
||||||
} else if (this.currentSlideIndex === this.slides.length) {
|
// } else if (this.currentSlideIndex === this.slides.length) {
|
||||||
this.currentSlideIndex = -1;
|
this.currentSlideIndex = -1;
|
||||||
this.reloadSlides();
|
this.reloadSlides();
|
||||||
this.router.navigate(['/commit-tracker']);
|
this.router.navigate(['/commit-tracker']);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user