mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-10-27 11:18:14 +01:00 
			
		
		
		
	Merge pull request #439 from Albuca/patch-1
Change 'Current' to 'Currently'
This commit is contained in:
		
						commit
						609bf4309f
					
				@ -41,28 +41,28 @@
 | 
			
		||||
          <ui-checkbox v-model="selectedMatchUsage.title" />
 | 
			
		||||
          <div class="flex-grow ml-4">
 | 
			
		||||
            <ui-text-input-with-label v-model="selectedMatch.title" :disabled="!selectedMatchUsage.title" label="Title" />
 | 
			
		||||
            <p v-if="mediaMetadata.title" class="text-xs ml-1 text-white text-opacity-60">Current: {{ mediaMetadata.title || '' }}</p>
 | 
			
		||||
            <p v-if="mediaMetadata.title" class="text-xs ml-1 text-white text-opacity-60">Currently: {{ mediaMetadata.title || '' }}</p>
 | 
			
		||||
          </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div v-if="selectedMatch.subtitle" class="flex items-center py-2">
 | 
			
		||||
          <ui-checkbox v-model="selectedMatchUsage.subtitle" />
 | 
			
		||||
          <div class="flex-grow ml-4">
 | 
			
		||||
            <ui-text-input-with-label v-model="selectedMatch.subtitle" :disabled="!selectedMatchUsage.subtitle" label="Subtitle" />
 | 
			
		||||
            <p v-if="mediaMetadata.subtitle" class="text-xs ml-1 text-white text-opacity-60">Current: {{ mediaMetadata.subtitle || '' }}</p>
 | 
			
		||||
            <p v-if="mediaMetadata.subtitle" class="text-xs ml-1 text-white text-opacity-60">Currently: {{ mediaMetadata.subtitle || '' }}</p>
 | 
			
		||||
          </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div v-if="selectedMatch.author" class="flex items-center py-2">
 | 
			
		||||
          <ui-checkbox v-model="selectedMatchUsage.author" />
 | 
			
		||||
          <div class="flex-grow ml-4">
 | 
			
		||||
            <ui-text-input-with-label v-model="selectedMatch.author" :disabled="!selectedMatchUsage.author" label="Author" />
 | 
			
		||||
            <p v-if="mediaMetadata.authorName" class="text-xs ml-1 text-white text-opacity-60">Current: {{ mediaMetadata.authorName || '' }}</p>
 | 
			
		||||
            <p v-if="mediaMetadata.authorName" class="text-xs ml-1 text-white text-opacity-60">Currently: {{ mediaMetadata.authorName || '' }}</p>
 | 
			
		||||
          </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div v-if="selectedMatch.narrator" class="flex items-center py-2">
 | 
			
		||||
          <ui-checkbox v-model="selectedMatchUsage.narrator" />
 | 
			
		||||
          <div class="flex-grow ml-4">
 | 
			
		||||
            <ui-text-input-with-label v-model="selectedMatch.narrator" :disabled="!selectedMatchUsage.narrator" label="Narrator" />
 | 
			
		||||
            <p v-if="mediaMetadata.narratorName" class="text-xs ml-1 text-white text-opacity-60">Current: {{ mediaMetadata.narratorName || '' }}</p>
 | 
			
		||||
            <p v-if="mediaMetadata.narratorName" class="text-xs ml-1 text-white text-opacity-60">Currently: {{ mediaMetadata.narratorName || '' }}</p>
 | 
			
		||||
          </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div v-if="selectedMatch.description" class="flex items-center py-2">
 | 
			
		||||
@ -73,14 +73,14 @@
 | 
			
		||||
          <ui-checkbox v-model="selectedMatchUsage.publisher" />
 | 
			
		||||
          <div class="flex-grow ml-4">
 | 
			
		||||
            <ui-text-input-with-label v-model="selectedMatch.publisher" :disabled="!selectedMatchUsage.publisher" label="Publisher" />
 | 
			
		||||
            <p v-if="mediaMetadata.publisher" class="text-xs ml-1 text-white text-opacity-60">Current: {{ mediaMetadata.publisher || '' }}</p>
 | 
			
		||||
            <p v-if="mediaMetadata.publisher" class="text-xs ml-1 text-white text-opacity-60">Currently: {{ mediaMetadata.publisher || '' }}</p>
 | 
			
		||||
          </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div v-if="selectedMatch.publishedYear" class="flex items-center py-2">
 | 
			
		||||
          <ui-checkbox v-model="selectedMatchUsage.publishedYear" />
 | 
			
		||||
          <div class="flex-grow ml-4">
 | 
			
		||||
            <ui-text-input-with-label v-model="selectedMatch.publishedYear" :disabled="!selectedMatchUsage.publishedYear" label="Published Year" />
 | 
			
		||||
            <p v-if="mediaMetadata.publishedYear" class="text-xs ml-1 text-white text-opacity-60">Current: {{ mediaMetadata.publishedYear || '' }}</p>
 | 
			
		||||
            <p v-if="mediaMetadata.publishedYear" class="text-xs ml-1 text-white text-opacity-60">Currently: {{ mediaMetadata.publishedYear || '' }}</p>
 | 
			
		||||
          </div>
 | 
			
		||||
        </div>
 | 
			
		||||
 | 
			
		||||
@ -88,7 +88,7 @@
 | 
			
		||||
          <ui-checkbox v-model="selectedMatchUsage.series" />
 | 
			
		||||
          <div class="flex-grow ml-4">
 | 
			
		||||
            <ui-text-input-with-label v-model="selectedMatch.series" :disabled="!selectedMatchUsage.series" label="Series" />
 | 
			
		||||
            <p v-if="mediaMetadata.seriesName" class="text-xs ml-1 text-white text-opacity-60">Current: {{ mediaMetadata.seriesName || '' }}</p>
 | 
			
		||||
            <p v-if="mediaMetadata.seriesName" class="text-xs ml-1 text-white text-opacity-60">Currently: {{ mediaMetadata.seriesName || '' }}</p>
 | 
			
		||||
          </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div v-if="selectedMatch.volumeNumber" class="flex items-center py-2">
 | 
			
		||||
@ -99,14 +99,14 @@
 | 
			
		||||
          <ui-checkbox v-model="selectedMatchUsage.isbn" />
 | 
			
		||||
          <div class="flex-grow ml-4">
 | 
			
		||||
            <ui-text-input-with-label v-model="selectedMatch.isbn" :disabled="!selectedMatchUsage.isbn" label="ISBN" />
 | 
			
		||||
            <p v-if="mediaMetadata.isbn" class="text-xs ml-1 text-white text-opacity-60">Current: {{ mediaMetadata.isbn || '' }}</p>
 | 
			
		||||
            <p v-if="mediaMetadata.isbn" class="text-xs ml-1 text-white text-opacity-60">Currently: {{ mediaMetadata.isbn || '' }}</p>
 | 
			
		||||
          </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div v-if="selectedMatch.asin" class="flex items-center py-2">
 | 
			
		||||
          <ui-checkbox v-model="selectedMatchUsage.asin" />
 | 
			
		||||
          <div class="flex-grow ml-4">
 | 
			
		||||
            <ui-text-input-with-label v-model="selectedMatch.asin" :disabled="!selectedMatchUsage.asin" label="ASIN" />
 | 
			
		||||
            <p v-if="mediaMetadata.asin" class="text-xs ml-1 text-white text-opacity-60">Current: {{ mediaMetadata.asin || '' }}</p>
 | 
			
		||||
            <p v-if="mediaMetadata.asin" class="text-xs ml-1 text-white text-opacity-60">Currently: {{ mediaMetadata.asin || '' }}</p>
 | 
			
		||||
          </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="flex items-center justify-end py-2">
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user