Skip to content
This repository has been archived by the owner on May 24, 2021. It is now read-only.

Commit

Permalink
fix(transcripts): Fixes scroll bug
Browse files Browse the repository at this point in the history
- Adapts title
- Increases active chapter background
  • Loading branch information
alexander-heimbuch committed Jan 6, 2018
1 parent 215bb53 commit 381fa99
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/tabs/transcripts/Render.vue
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
},
watch: {
transcripts () {
this.selected === -1 && this.scrollWindow()
this.follow && this.selected === -1 && this.scrollWindow()
},
follow () {
this.follow && this.scrollWindow()
Expand Down
2 changes: 1 addition & 1 deletion src/lang/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
"DURATION": "{minutes} Minuten"
},
"TRANSCRIPTS": {
"TITLE": "Transcripts",
"TITLE": "Transcript",
"CHAPTER": "Kapitel {index}: {title}",
"FOLLOW": "folgen",
"SEARCH": "Suche",
Expand Down
2 changes: 1 addition & 1 deletion src/lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
"ON_AIR": "On Air"
},
"TRANSCRIPTS": {
"TITLE": "Transcripts",
"TITLE": "Transcript",
"CHAPTER": "Chapter {index}: {title}",
"FOLLOW": "follow",
"SEARCH": "Search",
Expand Down
2 changes: 1 addition & 1 deletion src/store/reducers/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const themeColors = (colors = {}) => {
text: color(grey)
},
active: {
background: color(main).fade(0.8),
background: color(main).fade(0.6),
text: negative ? main : color(grey)
},
ghost: {
Expand Down

0 comments on commit 381fa99

Please sign in to comment.