fix: Add word-break to canned response list table content
This commit is contained in:
parent
16bfd68d95
commit
db37bfea06
1 changed files with 5 additions and 1 deletions
|
@ -46,7 +46,7 @@
|
||||||
{{ cannedItem.short_code }}
|
{{ cannedItem.short_code }}
|
||||||
</td>
|
</td>
|
||||||
<!-- Content -->
|
<!-- Content -->
|
||||||
<td>{{ cannedItem.content }}</td>
|
<td class="wrap-break-words">{{ cannedItem.content }}</td>
|
||||||
<!-- Action Buttons -->
|
<!-- Action Buttons -->
|
||||||
<td class="button-wrapper">
|
<td class="button-wrapper">
|
||||||
<woot-button
|
<woot-button
|
||||||
|
@ -209,4 +209,8 @@ export default {
|
||||||
.short-code {
|
.short-code {
|
||||||
width: 14rem;
|
width: 14rem;
|
||||||
}
|
}
|
||||||
|
.wrap-break-words {
|
||||||
|
word-break: break-all;
|
||||||
|
white-space: normal;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue