diff options
| author | Shpuld Shpuldson <shp@cock.li> | 2020-06-30 17:37:36 +0300 |
|---|---|---|
| committer | Shpuld Shpuldson <shp@cock.li> | 2020-06-30 17:37:36 +0300 |
| commit | 38d8526660df4ca664c9ea50a660868be2cb5e49 (patch) | |
| tree | 332eb88bacbc6a11f61808280edaec50ebf48bbb /src/components/timeline/timeline.js | |
| parent | ea09bbecf8b7715a1242a104b6233a7c3b5ac588 (diff) | |
change Show New text to Reload when flushing
Diffstat (limited to 'src/components/timeline/timeline.js')
| -rw-r--r-- | src/components/timeline/timeline.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/timeline/timeline.js b/src/components/timeline/timeline.js index 3a244c83..d6519f4a 100644 --- a/src/components/timeline/timeline.js +++ b/src/components/timeline/timeline.js @@ -49,11 +49,11 @@ const Timeline = { if (this.timelineError || this.errorData) return false return this.timeline.newStatusCount > 0 || this.timeline.flushMarker !== 0 }, - newStatusCountStr () { + loadButtonString () { if (this.timeline.flushMarker !== 0) { - return '' + return this.$t('timeline.reload') } else { - return ` (${this.newStatusCount})` + return `${this.$t('timeline.show_new')} (${this.newStatusCount})` } }, classes () { |
