Skip to content

Commit 410e4fc

Browse files
authored
Merge pull request #6 from spikeninja/dev
feat: version 1.1.1
2 parents e6d15de + 5e8b78f commit 410e4fc

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-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.1.0",
5+
"version": "1.1.1",
66
"scripts": {
77
"build": "nuxt build",
88
"dev": "nuxt dev",

src/pages/tasks/[id].vue

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,3 +75,15 @@ const { data: task, error } = useFetch(`/api/tasks/${route.params.id}`)
7575
</div>
7676
</div>
7777
</template>
78+
79+
<style scoped>
80+
th,
81+
td {
82+
padding: 8px;
83+
vertical-align: top;
84+
word-break: break-word;
85+
white-space: normal;
86+
overflow-wrap: break-word;
87+
max-width: 200px;
88+
}
89+
</style>

0 commit comments

Comments
 (0)