mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	merge: Fixed Emoji in usernames of profile's owner not visible in the Pages and Plays tabs (resolves #829) (!814)
View MR for information: https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/814 Closes #829 Approved-by: dakkar <dakkar@thenautilus.net> Approved-by: Hazelnoot <acomputerdog@gmail.com>
This commit is contained in:
		
						commit
						9d76cc08cb
					
				
					 2 changed files with 2 additions and 4 deletions
				
			
		| 
						 | 
					@ -14,7 +14,7 @@ SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
		</p>
 | 
							</p>
 | 
				
			||||||
		<footer>
 | 
							<footer>
 | 
				
			||||||
			<img class="icon" :src="flash.user.avatarUrl"/>
 | 
								<img class="icon" :src="flash.user.avatarUrl"/>
 | 
				
			||||||
			<p>{{ userName(flash.user) }}</p>
 | 
								<MkUserName :key="flash.user.id" :user="flash.user"/>
 | 
				
			||||||
		</footer>
 | 
							</footer>
 | 
				
			||||||
	</article>
 | 
						</article>
 | 
				
			||||||
</MkA>
 | 
					</MkA>
 | 
				
			||||||
| 
						 | 
					@ -23,7 +23,6 @@ SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
<script lang="ts" setup>
 | 
					<script lang="ts" setup>
 | 
				
			||||||
import { } from 'vue';
 | 
					import { } from 'vue';
 | 
				
			||||||
import * as Misskey from 'misskey-js';
 | 
					import * as Misskey from 'misskey-js';
 | 
				
			||||||
import { userName } from '@/filters/user.js';
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
const props = defineProps<{
 | 
					const props = defineProps<{
 | 
				
			||||||
	flash: Misskey.entities.Flash;
 | 
						flash: Misskey.entities.Flash;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -21,7 +21,7 @@ SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
		<p v-if="page.summary" :title="page.summary">{{ page.summary.length > 85 ? page.summary.slice(0, 85) + '…' : page.summary }}</p>
 | 
							<p v-if="page.summary" :title="page.summary">{{ page.summary.length > 85 ? page.summary.slice(0, 85) + '…' : page.summary }}</p>
 | 
				
			||||||
		<footer>
 | 
							<footer>
 | 
				
			||||||
			<img v-if="page.user.avatarUrl" class="icon" :src="page.user.avatarUrl"/>
 | 
								<img v-if="page.user.avatarUrl" class="icon" :src="page.user.avatarUrl"/>
 | 
				
			||||||
			<p>{{ userName(page.user) }}</p>
 | 
								<MkUserName :key="page.user.id" :user="page.user"/>
 | 
				
			||||||
		</footer>
 | 
							</footer>
 | 
				
			||||||
	</article>
 | 
						</article>
 | 
				
			||||||
</MkA>
 | 
					</MkA>
 | 
				
			||||||
| 
						 | 
					@ -30,7 +30,6 @@ SPDX-License-Identifier: AGPL-3.0-only
 | 
				
			||||||
<script lang="ts" setup>
 | 
					<script lang="ts" setup>
 | 
				
			||||||
import { } from 'vue';
 | 
					import { } from 'vue';
 | 
				
			||||||
import * as Misskey from 'misskey-js';
 | 
					import * as Misskey from 'misskey-js';
 | 
				
			||||||
import { userName } from '@/filters/user.js';
 | 
					 | 
				
			||||||
import MediaImage from '@/components/MkMediaImage.vue';
 | 
					import MediaImage from '@/components/MkMediaImage.vue';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const props = defineProps<{
 | 
					const props = defineProps<{
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue