From d190dbca03d618763577610defeed63cff673759 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 1 Sep 2019 15:34:31 -0400 Subject: [PATCH] Put file cache label column first Signed-off-by: Roberto Rosario --- mayan/apps/file_caching/apps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/file_caching/apps.py b/mayan/apps/file_caching/apps.py index 79bb81006a..2e87197712 100644 --- a/mayan/apps/file_caching/apps.py +++ b/mayan/apps/file_caching/apps.py @@ -47,8 +47,8 @@ class FileCachingConfig(MayanAppConfig): ) ) - SourceColumn(attribute='name', is_sortable=True, source=Cache) SourceColumn(attribute='label', is_sortable=True, source=Cache) + SourceColumn(attribute='name', is_sortable=True, source=Cache) SourceColumn( attribute='storage_instance_path', is_sortable=True, source=Cache )