mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	fix: selecting text in a note causing it to open
Closes transfem-org/Sharkey#175
This commit is contained in:
		
							parent
							
								
									51ec675e00
								
							
						
					
					
						commit
						3d0b754332
					
				
					 2 changed files with 9 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -226,7 +226,10 @@ const currentClip = inject<Ref<Misskey.entities.Clip> | null>('currentClip', nul
 | 
			
		|||
let note = $ref(deepClone(props.note));
 | 
			
		||||
 | 
			
		||||
function noteclick(id: string) {
 | 
			
		||||
	router.push(`/notes/${id}`);
 | 
			
		||||
	const selection = document.getSelection();
 | 
			
		||||
	if (selection?.toString().length === 0) {
 | 
			
		||||
		router.push(`/notes/${id}`);
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// plugin
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -16,7 +16,7 @@ SPDX-License-Identifier: AGPL-3.0-only
 | 
			
		|||
			<MkLoading v-if="translating" mini/>
 | 
			
		||||
			<div v-else>
 | 
			
		||||
				<b>{{ i18n.t('translatedFrom', { x: translation.sourceLang }) }}: </b>
 | 
			
		||||
				<Mfm :text="translation.text" :author="note.user" :nyaize="'account'" :emojiUrls="note.emojis"/>
 | 
			
		||||
				<Mfm :text="translation.text" :author="note.user" :nyaize="'respect'" :emojiUrls="note.emojis"/>
 | 
			
		||||
			</div>
 | 
			
		||||
		</div>
 | 
			
		||||
		<MkA v-if="note.renoteId" :class="$style.rp" :to="`/notes/${note.renoteId}`" v-on:click.stop>RN: ...</MkA>
 | 
			
		||||
| 
						 | 
				
			
			@ -63,7 +63,10 @@ const props = defineProps<{
 | 
			
		|||
const router = useRouter();
 | 
			
		||||
 | 
			
		||||
function noteclick(id: string) {
 | 
			
		||||
	router.push(`/notes/${id}`);
 | 
			
		||||
	const selection = document.getSelection();
 | 
			
		||||
	if (selection?.toString().length === 0) {
 | 
			
		||||
		router.push(`/notes/${id}`);
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
const parsed = $computed(() => props.note.text ? mfm.parse(props.note.text) : null);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue