mirror of
				https://github.com/TeamPiped/Piped.git
				synced 2025-11-04 06:31:55 +00:00 
			
		
		
		
	Merge pull request #3620 from Bnyro/master
feat: show tooltips when creator replied / liked comment
This commit is contained in:
		@@ -33,8 +33,13 @@
 | 
			
		||||
            <div class="comment-footer my-1 flex items-center gap-3">
 | 
			
		||||
                <div class="i-fa6-solid:thumbs-up" />
 | 
			
		||||
                <span v-text="numberFormat(comment.likeCount)" />
 | 
			
		||||
                <i v-if="comment.hearted" class="i-fa6-solid:heart" />
 | 
			
		||||
                <img v-if="comment.creatorReplied" :src="uploaderAvatarUrl" class="h-5 w-5 rounded-full" />
 | 
			
		||||
                <i v-if="comment.hearted" class="i-fa6-solid:heart" :title="$t('actions.creator_liked')" />
 | 
			
		||||
                <img
 | 
			
		||||
                    v-if="comment.creatorReplied"
 | 
			
		||||
                    :src="uploaderAvatarUrl"
 | 
			
		||||
                    class="h-5 w-5 rounded-full"
 | 
			
		||||
                    :title="$t('actions.creator_replied')"
 | 
			
		||||
                />
 | 
			
		||||
            </div>
 | 
			
		||||
            <template v-if="comment.repliesPage && (!loadingReplies || !showingReplies)">
 | 
			
		||||
                <div class="cursor-pointer" @click="loadReplies">
 | 
			
		||||
 
 | 
			
		||||
@@ -156,7 +156,9 @@
 | 
			
		||||
        "concurrent_prefetch_limit": "Concurrent Stream Prefetch Limit",
 | 
			
		||||
        "customize": "Customize",
 | 
			
		||||
        "invalid_url": "Invalid URL!",
 | 
			
		||||
        "add": "Add"
 | 
			
		||||
        "add": "Add",
 | 
			
		||||
        "creator_replied": "Creator replied",
 | 
			
		||||
        "creator_liked": "Creator liked"
 | 
			
		||||
    },
 | 
			
		||||
    "comment": {
 | 
			
		||||
        "pinned_by": "Pinned by {author}",
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user