tweak status options
This commit is contained in:
		
							parent
							
								
									8197c9e773
								
							
						
					
					
						commit
						a6d2382f97
					
				
					 1 changed files with 4 additions and 5 deletions
				
			
		| 
						 | 
				
			
			@ -23,15 +23,14 @@ export default {
 | 
			
		|||
    verifyCredentialsId: (verifyCredentials) => verifyCredentials.id,
 | 
			
		||||
    following: (relationship) => relationship && relationship.following,
 | 
			
		||||
    followRequested: (relationship) => relationship && relationship.requested,
 | 
			
		||||
    accountName: (account) => account && (account.display_name || account.acct),
 | 
			
		||||
    accountId: (account) => account && account.id,
 | 
			
		||||
    followLabel: (following, followRequested, accountName) => {
 | 
			
		||||
      if (typeof following === 'undefined' || !accountName) {
 | 
			
		||||
    followLabel: (following, followRequested, account) => {
 | 
			
		||||
      if (typeof following === 'undefined' || !account) {
 | 
			
		||||
        return ''
 | 
			
		||||
      }
 | 
			
		||||
      return (following || followRequested)
 | 
			
		||||
        ? `Unfollow ${accountName}`
 | 
			
		||||
        : `Follow ${accountName}`
 | 
			
		||||
        ? `Unfollow @${account.acct}`
 | 
			
		||||
        : `Follow @${account.acct}`
 | 
			
		||||
    },
 | 
			
		||||
    items: (followLabel, following, followRequested, accountId, verifyCredentialsId) => (
 | 
			
		||||
      [
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue