mirror of
				https://github.com/TeamPiped/Piped.git
				synced 2024-08-14 23:57:27 +00:00 
			
		
		
		
	Merge pull request #2725 from Bnyro/master
fix crash when a playlist doesn't have a description
This commit is contained in:
		
						commit
						2049696760
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -4,7 +4,7 @@
 | 
				
			||||||
    <LoadingIndicatorPage v-show="!playlist?.error" :show-content="playlist">
 | 
					    <LoadingIndicatorPage v-show="!playlist?.error" :show-content="playlist">
 | 
				
			||||||
        <h1 class="ml-1 mb-1 mt-4 text-3xl!" v-text="playlist.name" />
 | 
					        <h1 class="ml-1 mb-1 mt-4 text-3xl!" v-text="playlist.name" />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <CollapsableText :text="playlist.description" />
 | 
					        <CollapsableText v-if="playlist?.description" :text="playlist.description" />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <div class="flex justify-between items-center mt-1">
 | 
					        <div class="flex justify-between items-center mt-1">
 | 
				
			||||||
            <div>
 | 
					            <div>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue