Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ Section Order:

### Changed

- Enabled global search in the campaign table
- Allow clicking on table headers to change the sorting order

## [3.3.2] - 2026-01-05
Expand Down
10 changes: 5 additions & 5 deletions sovtimer/templates/sovtimer/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@
dataTables: {
paging: true,
languageUrl: '{{ DT_LANG_PATH }}',
layout: {
layout: { // see https://datatables.net/reference/option/layout
topStart: 'pageLength',
topEnd: null, // Removing the default search bar (Default is 'search', see https://datatables.net/reference/option/layout#Default)
topEnd: 'search',
bottomStart: 'info',
bottomEnd: 'paging'
},
ordering: {
indicators: false,
handler: true
ordering: { // https://datatables.net/reference/option/ordering
handler: true, // Enable ordering by clicking on column headers
indicators: false, // Disable ordering indicators on column headers so ColumnControl can manage them
},
columnControl: [
{
Expand Down
Loading