Skip to content

Commit

Permalink
fix overflowing long urls
Browse files Browse the repository at this point in the history
  • Loading branch information
jxjj committed Dec 20, 2024
1 parent d92ecd4 commit dabd3bf
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/javascript/components/DataTables/DataTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -212,4 +212,9 @@ const mergedCols = props.selectable
align-items: center;
justify-content: center;
}
/* prevent cells with long urls from overflowing */
.dt-container tbody td {
overflow-wrap: break-word;
}
</style>

0 comments on commit dabd3bf

Please sign in to comment.