FIX: Render creation date instead of run date if query was never run
This commit is contained in:
@@ -167,7 +167,17 @@
|
||||
</a>
|
||||
{{/if}}
|
||||
</td>
|
||||
<td class="query-created-at"><medium>{{bound-date query.last_run_at}}</medium></td>
|
||||
<td class="query-created-at">
|
||||
{{#if query.last_run_at}}
|
||||
<medium>
|
||||
{{bound-date query.last_run_at}}
|
||||
</medium>
|
||||
{{else}}
|
||||
<medium>
|
||||
{{bound-date query.created_at}}
|
||||
</medium>
|
||||
{{/if}}
|
||||
</td>
|
||||
</tr>
|
||||
{{/each}}
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user