3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-03-29 20:04:21 +00:00

Small fix for seat listing

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe
2025-07-07 20:56:26 +01:00
parent 58b6feb3ca
commit b4e22f4a21

View File

@ -34,7 +34,7 @@ class LicenseSeatsController extends Controller
}
if ($request->input('status') == 'assigned') {
$seats->whereNotNull('license_seats.assigned_to');
$seats->whereNotNull('license_seats.assigned_to')->whereNotNull('license_seats.assigned_to');
}