diff options
| author | Wyatt Benno <wyattbenno@gmail.com> | 2019-12-09 09:02:34 +0900 |
|---|---|---|
| committer | Wyatt Benno <wyattbenno@gmail.com> | 2019-12-09 09:02:34 +0900 |
| commit | e86af0c965d459d016d638c0822bc9af6a6c0ee1 (patch) | |
| tree | 6a1f446d7bf2305bf4b3837041f6f4254fcc1910 /src/components | |
| parent | 01855f315c7db813d7bbf2f3683017819d2fb70c (diff) | |
Change naming, make more general
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/timeline/timeline.js | 4 | ||||
| -rw-r--r-- | src/components/timeline/timeline.vue | 12 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/components/timeline/timeline.js b/src/components/timeline/timeline.js index 6086336c..9a53acd6 100644 --- a/src/components/timeline/timeline.js +++ b/src/components/timeline/timeline.js @@ -39,8 +39,8 @@ const Timeline = { timelineError () { return this.$store.state.statuses.error }, - error403 () { - return this.$store.state.statuses.error403 + errorData () { + return this.$store.state.statuses.errorData }, newStatusCount () { return this.timeline.newStatusCount diff --git a/src/components/timeline/timeline.vue b/src/components/timeline/timeline.vue index e4d453b8..d9f4025d 100644 --- a/src/components/timeline/timeline.vue +++ b/src/components/timeline/timeline.vue @@ -12,21 +12,21 @@ {{ $t('timeline.error_fetching') }} </div> <div - v-else-if="error403" + v-else-if="errorData" class="loadmore-error alert error" @click.prevent > {{ $t('timeline.error_403') }} </div> <button - v-if="timeline.newStatusCount > 0 && !timelineError && !error403" + v-if="timeline.newStatusCount > 0 && !timelineError && !errorData" class="loadmore-button" @click.prevent="showNewStatuses" > {{ $t('timeline.show_new') }}{{ newStatusCountStr }} </button> <div - v-if="!timeline.newStatusCount > 0 && !timelineError && !error403" + v-if="!timeline.newStatusCount > 0 && !timelineError && !errorData" class="loadmore-text faint" @click.prevent > @@ -74,17 +74,17 @@ {{ $t('timeline.no_more_statuses') }} </div> <a - v-else-if="!timeline.loading && !error403" + v-else-if="!timeline.loading && !errorData" href="#" @click.prevent="fetchOlderStatuses()" > <div class="new-status-notification text-center panel-footer">{{ $t('timeline.load_older') }}</div> </a> <a - v-else-if="error403" + v-else-if="errorData" href="#" > - <div class="new-status-notification text-center panel-footer">{{ error403 }}</div> + <div class="new-status-notification text-center panel-footer">{{ errorData }}</div> </a> <div v-else |
