Compare commits
	
		
			3 Commits
		
	
	
		
			#172-deplo
			...
			9dc98d386c
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 9dc98d386c | |||
| 0040dc47a5 | |||
| 4516df29d9 | 
| @@ -4,8 +4,19 @@ | ||||
|     class="min-w-full p-4 text-xs text-gray-500 flex gap-x-1" | ||||
|   > | ||||
|     <p class="flex flex-row gap-x-1"> | ||||
|       <strong>Wersja:</strong> | ||||
|       <strong>Wydanie:</strong> | ||||
|       <a | ||||
|         v-if="deployInformation.github_url" | ||||
|         class="text-blumilk-600 hover:underline hover:text-blumilk-500" | ||||
|         :href="`${deployInformation.github_url}/commit/${deployInformation.slug_commit}`" | ||||
|         target="_blank" | ||||
|         rel="noopener nofollow noreferrer" | ||||
|         :title="`Commit: ${deployInformation.slug_commit ?? 'unset'}`" | ||||
|       > | ||||
|         {{ deployInformation.slug_description ?? 'unset' }} ({{ deployInformation.release_version }}) | ||||
|       </a> | ||||
|       <span | ||||
|         v-else | ||||
|         :title="`Commit: ${deployInformation.slug_commit ?? 'unset'}`" | ||||
|       > | ||||
|         {{ deployInformation.slug_description ?? 'unset' }} ({{ deployInformation.release_version ?? 'unset' }}) | ||||
| @@ -16,8 +27,8 @@ | ||||
|       class="flex flex-row gap-x-1" | ||||
|       :class="{ 'border-l-2 border-gray-300 pl-1': isHorizontal() }" | ||||
|     > | ||||
|       <strong>Ostatnio zbudowano:</strong> | ||||
|       <span>{{ getDate() }}</span> | ||||
|       <strong>Data wydania:</strong> | ||||
|       <span>{{ DateTime.fromISO(deployInformation.release_created_at).toLocaleString(DateTime.DATETIME_SHORT) }}</span> | ||||
|     </p> | ||||
|     <p | ||||
|       v-if="deployInformation.github_url" | ||||
| @@ -26,7 +37,7 @@ | ||||
|       <strong v-if="isVertical()">Repozytorium:</strong> | ||||
|       <a | ||||
|         v-if="deployInformation.github_url" | ||||
|         class="text-gray-800 underline hover:no-underline hover:text-blumilk-600" | ||||
|         class="text-blumilk-600 hover:underline hover:text-blumilk-500" | ||||
|         :href="deployInformation.github_url" | ||||
|         target="_blank" | ||||
|         rel="noopener nofollow noreferrer" | ||||
| @@ -53,15 +64,4 @@ function isVertical() { | ||||
| function isHorizontal() { | ||||
|   return props.layout === 'horizontal' | ||||
| } | ||||
|  | ||||
| function getDate() { | ||||
|   return DateTime.fromISO(props.deployInformation.release_created_at) | ||||
|     .toLocaleString({ | ||||
|       year: 'numeric', | ||||
|       month: '2-digit', | ||||
|       day: '2-digit', | ||||
|       hour: '2-digit', | ||||
|       minute: '2-digit', | ||||
|     }) | ||||
| } | ||||
| </script> | ||||
| </script> | ||||
		Reference in New Issue
	
	Block a user