Merge pull request #10333 from snipe/bug/sc-17711/v6-bug-500-server-error-when-trying-to-checkin

Fixed v6 bug 500 server error when trying to checkin
This commit is contained in:
snipe 2021-11-18 14:38:17 -08:00 committed by GitHub
commit 6d545ff11b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,7 +23,7 @@ Route::group(['prefix' => 'components', 'middleware' => ['auth']], function () {
Route::post(
'{componentID}/checkin/{backto?}',
[Components\ComponentCheckinController::class, 'store']
)->name('checkout/component');
)->name('component.checkin.save');
});