Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop
This commit is contained in:
		
						commit
						bb9fc56cc1
					
				
					 3 changed files with 12 additions and 5 deletions
				
			
		|  | @ -8,6 +8,7 @@ | |||
| --> | ||||
| 
 | ||||
| ## 12.x.x (unreleased) | ||||
| - ActivityPub: deliverキューのメモリ使用量を削減 | ||||
| 
 | ||||
| ### Improvements | ||||
| - ActivityPub: リモートユーザーのDeleteアクティビティに対応 | ||||
|  |  | |||
|  | @ -3,10 +3,10 @@ | |||
| 	<MkA class="name" :to="userPage(note.user)" v-user-preview="note.user.id"> | ||||
| 		<MkUserName :user="note.user"/> | ||||
| 	</MkA> | ||||
| 	<span class="is-bot" v-if="note.user.isBot">bot</span> | ||||
| 	<span class="username"><MkAcct :user="note.user"/></span> | ||||
| 	<span class="admin" v-if="note.user.isAdmin"><i class="fas fa-bookmark"></i></span> | ||||
| 	<span class="moderator" v-if="!note.user.isAdmin && note.user.isModerator"><i class="far fa-bookmark"></i></span> | ||||
| 	<div class="is-bot" v-if="note.user.isBot">bot</div> | ||||
| 	<div class="username"><MkAcct :user="note.user"/></div> | ||||
| 	<div class="admin" v-if="note.user.isAdmin"><i class="fas fa-bookmark"></i></div> | ||||
| 	<div class="moderator" v-if="!note.user.isAdmin && note.user.isModerator"><i class="far fa-bookmark"></i></div> | ||||
| 	<div class="info"> | ||||
| 		<span class="mobile" v-if="note.viaMobile"><i class="fas fa-mobile-alt"></i></span> | ||||
| 		<MkA class="created-at" :to="notePage(note)"> | ||||
|  | @ -55,6 +55,7 @@ export default defineComponent({ | |||
| 	white-space: nowrap; | ||||
| 
 | ||||
| 	> .name { | ||||
| 		flex-shrink: 1; | ||||
| 		display: block; | ||||
| 		margin: 0 .5em 0 0; | ||||
| 		padding: 0; | ||||
|  | @ -81,17 +82,20 @@ export default defineComponent({ | |||
| 
 | ||||
| 	> .admin, | ||||
| 	> .moderator { | ||||
| 		flex-shrink: 0; | ||||
| 		margin-right: 0.5em; | ||||
| 		color: var(--badge); | ||||
| 	} | ||||
| 
 | ||||
| 	> .username { | ||||
| 		flex-shrink: 9999999; | ||||
| 		margin: 0 .5em 0 0; | ||||
| 		overflow: hidden; | ||||
| 		text-overflow: ellipsis; | ||||
| 	} | ||||
| 
 | ||||
| 	> .info { | ||||
| 		flex-shrink: 0; | ||||
| 		margin-left: auto; | ||||
| 		font-size: 0.9em; | ||||
| 
 | ||||
|  |  | |||
|  | @ -64,7 +64,9 @@ export function deliver(user: ThinUser, content: unknown, to: string | null) { | |||
| 	if (to == null) return null; | ||||
| 
 | ||||
| 	const data = { | ||||
| 		user, | ||||
| 		user: { | ||||
| 			id: user.id | ||||
| 		}, | ||||
| 		content, | ||||
| 		to | ||||
| 	}; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue