1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-19 18:29:23 +00:00

Feat metadata column order (#6622)

* feat: metdata column order

* feat: hidden column support adjust column order

* feat: optimzie code

---------

Co-authored-by: 杨国璇 <ygx@Hello-word.local>
This commit is contained in:
杨国璇
2024-08-23 17:11:24 +08:00
committed by GitHub
parent 645099a405
commit b32b3fe904
18 changed files with 401 additions and 65 deletions

View File

@@ -125,6 +125,11 @@ class Context {
return true;
};
canModifyColumnOrder = () => {
if (this.permission === 'r') return false;
return true;
};
canModifyView = (view) => {
if (this.permission === 'r') return false;
return true;