diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-04-15 05:22:16 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-04-15 05:22:16 +0900 |
| commit | f78ae399f2a49379e0790ee07d2d8b8988ea01ef (patch) | |
| tree | 95eb47c2ec97b040bfe6e067a0dc436dc26fba5a /src/client/app/mobile | |
| parent | wip (diff) | |
| download | misskey-f78ae399f2a49379e0790ee07d2d8b8988ea01ef.tar.gz misskey-f78ae399f2a49379e0790ee07d2d8b8988ea01ef.tar.bz2 misskey-f78ae399f2a49379e0790ee07d2d8b8988ea01ef.zip | |
wip
Diffstat (limited to 'src/client/app/mobile')
| -rw-r--r-- | src/client/app/mobile/views/components/timeline.vue | 5 | ||||
| -rw-r--r-- | src/client/app/mobile/views/pages/settings.vue | 1 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/client/app/mobile/views/components/timeline.vue b/src/client/app/mobile/views/components/timeline.vue index 6bc12096cd..12cc7fcf19 100644 --- a/src/client/app/mobile/views/components/timeline.vue +++ b/src/client/app/mobile/views/components/timeline.vue @@ -7,7 +7,7 @@ </div> <div class="empty" v-if="!fetching && notes.length == 0"> %fa:R comments% - %i18n:@empty-timeline% + %i18n:@empty% </div> <button v-if="!fetching && existMore" @click="more" :disabled="moreFetching" slot="tail"> <span v-if="!moreFetching">%i18n:@load-more%</span> @@ -26,7 +26,8 @@ export default Vue.extend({ props: { date: { type: Date, - required: false + required: false, + default: null } }, data() { diff --git a/src/client/app/mobile/views/pages/settings.vue b/src/client/app/mobile/views/pages/settings.vue index a294bf12a0..36f7f09b84 100644 --- a/src/client/app/mobile/views/pages/settings.vue +++ b/src/client/app/mobile/views/pages/settings.vue @@ -5,7 +5,6 @@ <p v-html="'%i18n:@signed-in-as%'.replace('{}', '<b>' + name + '</b>')"></p> <ul> <li><router-link to="./settings/profile">%fa:user%%i18n:@profile%%fa:angle-right%</router-link></li> - <li><router-link to="./settings/authorized-apps">%fa:puzzle-piece%%i18n:@applications%%fa:angle-right%</router-link></li> <li><router-link to="./settings/twitter">%fa:B twitter%%i18n:@twitter%%fa:angle-right%</router-link></li> <li><router-link to="./settings/signin-history">%fa:sign-in-alt%%i18n:@signin-history%%fa:angle-right%</router-link></li> </ul> |