fix: Add word-break to canned response list table content

This commit is contained in:
Fayaz Ahmed 2022-11-22 23:53:15 +05:30 committed by GitHub
parent 16bfd68d95
commit db37bfea06
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -46,7 +46,7 @@
{{ cannedItem.short_code }}
</td>
<!-- Content -->
<td>{{ cannedItem.content }}</td>
<td class="wrap-break-words">{{ cannedItem.content }}</td>
<!-- Action Buttons -->
<td class="button-wrapper">
<woot-button
@ -209,4 +209,8 @@ export default {
.short-code {
width: 14rem;
}
.wrap-break-words {
word-break: break-all;
white-space: normal;
}
</style>