Skip to content

Commit

Permalink
fix: lowercase docker name
Browse files Browse the repository at this point in the history
  • Loading branch information
bohdan-shulha committed Nov 22, 2024
1 parent 0da92de commit b1bafe0
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
2 changes: 1 addition & 1 deletion bootstrap/helpers.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ function dockerize_name(string $name): string
$name = Str::substr($name, 0, 57).'_'.Str::random(5);
}

return $name;
return Str::lower($name);
}
}
24 changes: 24 additions & 0 deletions resources/js/Pages/Services/ReviewApps.vue
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,30 @@ function getVisitUrl(reviewApp) {
</RelativeDate>
</div>

<div
class="flex items-center text-sm text-gray-600 dark:text-gray-400"
>
<RelativeDate :date="reviewApp.updated_at">
<template #prefix>
<svg
class="w-4 h-4 mr-2"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
/>
</svg>

Updated
</template>
</RelativeDate>
</div>

<div
v-if="getVisitUrl(reviewApp)"
class="flex flex-col gap-2"
Expand Down

0 comments on commit b1bafe0

Please sign in to comment.