Merge pull request 'Added created by and updated by column in production characteristic of livewire page' (#903) from ranjith-dev into master
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 46s

Reviewed-on: #903
This commit was merged in pull request #903.
This commit is contained in:
2026-08-18 10:35:06 +00:00

View File

@@ -196,7 +196,8 @@ public $records = [];
'observed_value' => $value ?? null,
'status' => $status,
'inspection_status' => $finalInspectionStatus ?? null,
'created_by' => $this->data['operator_id'] ?? null,
'created_by' => $this->data['created_by'] ?? null,
'updated_by' => $this->data['updated_by'] ?? null,
]);
}