fixes little bug where status timestamp was converted from null to the current date, with create_date in php

This commit is contained in:
SimonGschnell
2024-01-23 11:40:02 +01:00
parent df74bade9b
commit 13f2bb4e85
3 changed files with 7 additions and 7 deletions
@@ -133,15 +133,15 @@ export default {
<div class="form-underline mb-2 col">
<div class="form-underline-titel">Date of Status: </div>
<span class="form-underline-content" >{{data.status_timestamp}}</span>
<!-- only status timestamp and status message can be null in the database -->
<span class="form-underline-content" >{{data.status_timestamp?data.status_timestamp:'-'}}</span>
</div>
<div class="form-underline mb-2 col">
<div class="form-underline-titel">Status message: </div>
<!-- only status timestamp and status message can be null in the database -->
<span class="form-underline-content" >{{data.status_message? data.status_message : '-'}}</span>
</div>