Skip to content

Commit ec1424f

Browse files
authored
Merge pull request #2 from spikeninja/dev
feat: version 1.0.2
2 parents 7adc741 + 632cd5b commit ec1424f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "nuxt-app",
33
"private": true,
44
"type": "module",
5-
"version": "1.0.1",
5+
"version": "1.0.2",
66
"scripts": {
77
"build": "nuxt build",
88
"dev": "nuxt dev",

src/pages/tasks/[id].vue

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,10 @@ const { data: task, error } = useFetch(`/api/tasks/${route.params.id}`)
5757
<th>Finished At</th>
5858
<td>{{ task.finishedAt }}</td>
5959
</tr>
60+
<tr>
61+
<th>Error</th>
62+
<td>{{ task.error }}</td>
63+
</tr>
6064
<tr>
6165
<th>Worker</th>
6266
<td>{{ task.worker }}</td>

0 commit comments

Comments
 (0)