chore: Fix formatting issue in deployment index.blade.php file

This commit is contained in:
Andras Bacsai 2024-05-28 19:00:59 +02:00
parent 622095ebc4
commit 1f7725ada3

View File

@ -72,7 +72,8 @@ class="w-6 h-6" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
x-on:click.stop="goto('{{ $application->gitCommitLink(data_get($deployment, 'commit')) }}')">
<div class="text-xs underline">
@if ($deployment->commitMessage())
({{data_get_str($deployment, 'commit')->limit(7)}} - {{ $deployment->commitMessage() }})
({{ data_get_str($deployment, 'commit')->limit(7) }} -
{{ $deployment->commitMessage() }})
@else
{{ data_get_str($deployment, 'commit')->limit(7) }}
@endif
@ -104,14 +105,16 @@ class="w-6 h-6" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
@endforelse
@if ($deployments_count > 0)
@assets
<script src="https://cdn.jsdelivr.net/npm/dayjs@1/dayjs.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/dayjs@1/plugin/utc.js"></script>
<script src="https://cdn.jsdelivr.net/npm/dayjs@1/plugin/relativeTime.js"></script>
@endassets
@script
<script>
function goto(url) {
window.location.href = url;
};
document.addEventListener('alpine:init', () => {
let timers = {};
dayjs.extend(window.dayjs_plugin_utc);
@ -141,8 +144,8 @@ function goto(url) {
return dayjs.utc(created_at).fromNow();
}
}))
})
</script>
@endscript
@endif
</div>