We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54783a1 commit 4fe40c9Copy full SHA for 4fe40c9
2 files changed
frontend/javascript/modules/table.js
@@ -17,15 +17,15 @@ export default class Table {
17
// Just remove the search input from the DOM instead of disabling it
18
this.domOptions = "lrtip";
19
if (this.table.dataset.searchable === 'true') {
20
- this.domOptions = "ltrtip";
+ this.domOptions = "lfrtip";
21
}
22
23
this.render();
24
25
26
render() {
27
this.table = $(this.table).DataTable({ // eslint-disable-line new-cap
28
- sDom: this.domOptions,
+ //dom: this.domOptions,
29
lengthChange: this.lengthChangable,
30
info: false,
31
paging: this.paginated,
frontend/stylesheets/components/_datatables.scss
@@ -23,12 +23,6 @@ div {
margin-right: 15px;
- .row {
- :last-of-type {
- width: 100%;
- }
-
32
.col-sm-7 {
33
width: 100%;
34
0 commit comments