Resolve #4374
This commit is contained in:
		| @@ -14,6 +14,7 @@ import wTips from './tips.vue'; | ||||
| import wNav from './nav.vue'; | ||||
| import wHashtags from './hashtags.vue'; | ||||
| import wInstance from './instance.vue'; | ||||
| import wPostForm from './post-form.vue'; | ||||
|  | ||||
| Vue.component('mkw-analog-clock', wAnalogClock); | ||||
| Vue.component('mkw-nav', wNav); | ||||
| @@ -29,3 +30,4 @@ Vue.component('mkw-rss', wRss); | ||||
| Vue.component('mkw-version', wVersion); | ||||
| Vue.component('mkw-hashtags', wHashtags); | ||||
| Vue.component('mkw-instance', wInstance); | ||||
| Vue.component('mkw-post-form', wPostForm); | ||||
|   | ||||
| @@ -17,7 +17,7 @@ | ||||
| 					ref="text" | ||||
| 					v-autocomplete="{ model: 'text' }" | ||||
| 				></textarea> | ||||
| 				<button class="emoji" @click="emoji" ref="emoji"> | ||||
| 				<button class="emoji" @click="emoji" ref="emoji" v-if="!$root.isMobile"> | ||||
| 					<fa :icon="['far', 'laugh']"/> | ||||
| 				</button> | ||||
| 			</div> | ||||
| @@ -161,7 +161,7 @@ export default define({ | ||||
| 		}, | ||||
| 
 | ||||
| 		async emoji() { | ||||
| 			const Picker = await import('../components/emoji-picker-dialog.vue').then(m => m.default); | ||||
| 			const Picker = await import('../../../desktop/views/components/emoji-picker-dialog.vue').then(m => m.default); | ||||
| 			const button = this.$refs.emoji; | ||||
| 			const rect = button.getBoundingClientRect(); | ||||
| 			const vm = this.$root.new(Picker, { | ||||
| @@ -186,6 +186,9 @@ export default define({ | ||||
| 				alert('Something happened'); | ||||
| 			}).then(() => { | ||||
| 				this.posting = false; | ||||
| 				this.$nextTick(() => { | ||||
| 					this.$refs.text.focus(); | ||||
| 				}); | ||||
| 			}); | ||||
| 		}, | ||||
| 
 | ||||
| @@ -6,7 +6,6 @@ import wActivity from './activity.vue'; | ||||
| import wTrends from './trends.vue'; | ||||
| import wUsers from './users.vue'; | ||||
| import wPolls from './polls.vue'; | ||||
| import wPostForm from './post-form.vue'; | ||||
| import wMessaging from './messaging.vue'; | ||||
| import wProfile from './profile.vue'; | ||||
| import wCustomize from './customize.vue'; | ||||
| @@ -17,7 +16,6 @@ Vue.component('mkw-activity', wActivity); | ||||
| Vue.component('mkw-trends', wTrends); | ||||
| Vue.component('mkw-users', wUsers); | ||||
| Vue.component('mkw-polls', wPolls); | ||||
| Vue.component('mkw-post-form', wPostForm); | ||||
| Vue.component('mkw-messaging', wMessaging); | ||||
| Vue.component('mkw-profile', wProfile); | ||||
| Vue.component('mkw-customize', wCustomize); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 syuilo
					syuilo