Skip to content

Commit a1aa19d

Browse files
authored
Merge pull request #491 from dbarzin/dev
Dev
2 parents 4247315 + ca53820 commit a1aa19d

File tree

7 files changed

+10
-6
lines changed

7 files changed

+10
-6
lines changed

app/Console/Kernel.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ class Kernel extends ConsoleKernel
1515
protected $commands = [
1616
Commands\GenerateTestData::class,
1717
Commands\SendNotifications::class,
18+
Commands\Cleanup::class,
1819
];
1920

2021
/**
@@ -27,6 +28,7 @@ class Kernel extends ConsoleKernel
2728
protected function schedule(Schedule $schedule)
2829
{
2930
$schedule->command('deming:send-notifications')->daily();
31+
$schedule->command('deming:cleanup')->daily();
3032
}
3133

3234
/**

app/Http/Controllers/ControlController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ public function edit(int $id)
541541
// get all clauses
542542
$all_measures = DB::table('measures')
543543
->select('id', 'clause')
544-
->orderBy('id')
544+
->orderBy('clause')
545545
->get();
546546

547547
// get users

config/app.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@
6767

6868
'asset_url' => env('ASSET_URL', null),
6969

70+
'editor' => env('APP_EDITOR', 'sublime'),
71+
7072
/*
7173
|--------------------------------------------------------------------------
7274
| Application Timezone

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2025.08.01",
2+
"version": "2025.08.06",
33
"license": "GPL-3.0",
44
"author": "Didier Barzin",
55
"repository": "https://www.github.com/dbarzin/deming",

resources/views/controls/edit.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<strong>{{ trans("cruds.control.fields.clauses") }}</strong>
1717
</div>
1818
<div class="cell-lg-6 cell-md-10">
19-
<select data-role="select" id="measures" name="measures[]" multiple>
19+
<select id="measures" name="measures[]" data-role="select" data-filter="true" multiple>
2020
@foreach($all_measures as $measure)
2121
<option value="{{ $measure->id }}"
2222
{{ in_array($measure->id, old("measures", $measures)) ? "selected" : "" }}>

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025.08.01
1+
2025.08.06

0 commit comments

Comments
 (0)