Merge branch 'master' of https://github.com/brkcvn/akaunting
This commit is contained in:
commit
1157ea41cd
@ -32,7 +32,12 @@ class ShowInNotifications
|
|||||||
|
|
||||||
foreach ($updates as $key => $update) {
|
foreach ($updates as $key => $update) {
|
||||||
$prefix = ($key == 'core') ? 'core' : 'module';
|
$prefix = ($key == 'core') ? 'core' : 'module';
|
||||||
$name = ($prefix == 'core') ? 'Akaunting' : module($key)->getName();
|
|
||||||
|
if ($prefix == 'module' && ! module($key)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
$name = ($prefix == 'core') ? 'Akaunting' : module($key)?->getName();
|
||||||
|
|
||||||
$new = new DatabaseNotification();
|
$new = new DatabaseNotification();
|
||||||
$new->id = $key;
|
$new->id = $key;
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
<x-form.group.email name="email" label="{{ trans('general.email') }}" ::disabled="{{ $user->hasPendingInvitation() ? 'true' : 'false' }}" />
|
<x-form.group.email name="email" label="{{ trans('general.email') }}" ::disabled="{{ $user->hasPendingInvitation() ? 'true' : 'false' }}" />
|
||||||
|
|
||||||
@if (user()->id == $user->id)
|
@if (user()->id == $user->id)
|
||||||
<x-form.group.checkbox name="change_password" :options="['1' => trans('auth.change_password')]" form-group-class="sm:col-span-3" @input="onChangePassword($event)" />
|
<x-form.group.checkbox name="change_password" :options="['1' => trans('auth.change_password')]" form-group-class="sm:col-span-3" checkbox-class="sm:col-span-6" @input="onChangePassword($event)" />
|
||||||
|
|
||||||
<x-form.group.password name="password" :label="trans('auth.password.new')" v-show="show_password" />
|
<x-form.group.password name="password" :label="trans('auth.password.new')" v-show="show_password" />
|
||||||
@endif
|
@endif
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
@if (! empty($description))
|
@if (! empty($description))
|
||||||
<span class="text-sm font-light text-black flex gap-x-1 mt-1">
|
<span class="text-sm font-light text-black block gap-x-1 mt-1">
|
||||||
{!! $description !!}
|
{!! $description !!}
|
||||||
</span>
|
</span>
|
||||||
@endif
|
@endif
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
@if (!empty($description))
|
@if (!empty($description))
|
||||||
<span class="text-sm font-light text-black flex gap-x-1 mt-1">
|
<span class="text-sm font-light text-black block gap-x-1 mt-1">
|
||||||
{!! $description !!}
|
{!! $description !!}
|
||||||
</span>
|
</span>
|
||||||
@endif
|
@endif
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
@if (! empty($description))
|
@if (! empty($description))
|
||||||
<span class="text-sm font-light text-black flex gap-x-1 mt-1">
|
<span class="text-sm font-light text-black block gap-x-1 mt-1">
|
||||||
{!! $description !!}
|
{!! $description !!}
|
||||||
</span>
|
</span>
|
||||||
@endif
|
@endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user