Skip to content

Commit 5354561

Browse files
authored
Merge pull request coollabsio#3659 from coollabsio/next
v4.0.0-beta.349
2 parents 0eea315 + 223cd37 commit 5354561

19 files changed

+22
-22
lines changed

config/sentry.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
// The release version of your application
99
// Example with dynamic git hash: trim(exec('git --git-dir ' . base_path('.git') . ' log --pretty="%h" -n1 HEAD'))
10-
'release' => '4.0.0-beta.348',
10+
'release' => '4.0.0-beta.349',
1111
// When left empty or `null` the Laravel environment will be used
1212
'environment' => config('app.env'),
1313

config/version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<?php
22

3-
return '4.0.0-beta.348';
3+
return '4.0.0-beta.349';

other/nightly/versions.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"coolify": {
33
"v4": {
4-
"version": "4.0.0-beta.348"
4+
"version": "4.0.0-beta.349"
55
},
66
"nightly": {
7-
"version": "4.0.0-beta.349"
7+
"version": "4.0.0-beta.350"
88
},
99
"helper": {
1010
"version": "1.0.1"

resources/views/auth/confirm-password.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<div class="w-96">
99
<form action="/user/confirm-password" method="POST" class="flex flex-col gap-2">
1010
@csrf
11-
<x-forms.input required type="password" name="password" label="{{ __('input.password') }}" autofocus />
11+
<x-forms.input required type="password" name="password" label="{{ __('input.password') }}" />
1212
<x-forms.button type="submit">{{ __('auth.confirm_password') }}</x-forms.button>
1313
</form>
1414
@if ($errors->any())

resources/views/auth/forgot-password.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class="w-full bg-white shadow md:mt-0 sm:max-w-md xl:p-0 dark:bg-base ">
1212
@if (is_transactional_emails_active())
1313
<form action="/forgot-password" method="POST" class="flex flex-col gap-2">
1414
@csrf
15-
<x-forms.input required type="email" name="email" label="{{ __('input.email') }}" autofocus />
15+
<x-forms.input required type="email" name="email" label="{{ __('input.email') }}" />
1616
<x-forms.button type="submit">{{ __('auth.forgot_password_send_email') }}</x-forms.button>
1717
</form>
1818
@else

resources/views/auth/login.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
@csrf
1111
@env('local')
1212
<x-forms.input value="[email protected]" type="email" autocomplete="email" name="email"
13-
required label="{{ __('input.email') }}" autofocus />
13+
required label="{{ __('input.email') }}" />
1414

1515
<x-forms.input value="password" type="password" autocomplete="current-password" name="password"
1616
required label="{{ __('input.password') }}" />
@@ -20,7 +20,7 @@
2020
</a>
2121
@else
2222
<x-forms.input type="email" name="email" autocomplete="email" required
23-
label="{{ __('input.email') }}" autofocus />
23+
label="{{ __('input.email') }}" />
2424
<x-forms.input type="password" name="password" autocomplete="current-password" required
2525
label="{{ __('input.password') }}" />
2626
<a href="/forgot-password" class="text-xs">

resources/views/auth/reset-password.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
label="{{ __('input.email') }}" />
1717
<div class="flex flex-col gap-2">
1818
<x-forms.input required type="password" id="password" name="password"
19-
label="{{ __('input.password') }}" autofocus />
19+
label="{{ __('input.password') }}" />
2020
<x-forms.input required type="password" id="password_confirmation"
2121
name="password_confirmation" label="{{ __('input.password.again') }}" />
2222
</div>

resources/views/auth/two-factor-challenge.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<form action="/two-factor-challenge" method="POST" class="flex flex-col gap-2">
1010
@csrf
1111
<div>
12-
<x-forms.input type="number" name="code" autocomplete="one-time-code" label="{{ __('input.code') }}" autofocus />
12+
<x-forms.input type="number" name="code" autocomplete="one-time-code" label="{{ __('input.code') }}" />
1313
<div x-show="!showRecovery"
1414
class="pt-2 text-xs cursor-pointer hover:underline hover:dark:text-white"
1515
x-on:click="showRecovery = !showRecovery">Enter

resources/views/livewire/project/add-empty.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<form class="flex flex-col w-full gap-2 rounded" wire:submit='submit'>
2-
<x-forms.input autofocus placeholder="Your Cool Project" id="name" label="Name" required />
2+
<x-forms.input placeholder="Your Cool Project" id="name" label="Name" required />
33
<x-forms.input placeholder="This is my cool project everyone knows about" id="description" label="Description" />
44
<div class="subtitle">New project will have a default production environment.</div>
55
<x-forms.button type="submit" @click="slideOverOpen=false">

resources/views/livewire/project/add-environment.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<form class="flex flex-col w-full gap-2 rounded" wire:submit='submit'>
2-
<x-forms.input autofocus placeholder="production" id="name" label="Name" required />
2+
<x-forms.input placeholder="production" id="name" label="Name" required />
33
<x-forms.button type="submit" @click="slideOverOpen=false">
44
Save
55
</x-forms.button>

0 commit comments

Comments
 (0)