summaryrefslogtreecommitdiff
path: root/app/Datatables.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2017-10-22 09:42:57 +0100
committerGreg Roach <fisharebest@gmail.com>2017-10-22 09:43:23 +0100
commit9192e0529bd9958ef9edd898b49a658badce7fc6 (patch)
tree31ae09e57bafbc41bab18f7f3e228ec2503a0530 /app/Datatables.php
parent03669786771e8c57f21edf998094c87ce4d00966 (diff)
downloadwebtrees-9192e0529bd9958ef9edd898b49a658badce7fc6.tar.gz
webtrees-9192e0529bd9958ef9edd898b49a658badce7fc6.tar.bz2
webtrees-9192e0529bd9958ef9edd898b49a658badce7fc6.zip
Fix: #1435 - wrong column definitions for repository table
Diffstat (limited to 'app/Datatables.php')
-rwxr-xr-xapp/Datatables.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Datatables.php b/app/Datatables.php
index c276be2743..33278cbb53 100755
--- a/app/Datatables.php
+++ b/app/Datatables.php
@@ -125,7 +125,7 @@ class Datatables {
return Html::attributes([
'class' => 'table table-bordered table-sm table-responsive datatables table-repository',
//'data-columns' => '[{ type: "text" }, { type: "num" }, { type: "text" }, { sorting: false }]',
- 'data-columns' => '[null, null, null, null]',
+ 'data-columns' => '[null, null, null]',
'data-state-save' => 'true',
] + self::languageAttributes());
}