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

feat: side properties (#6485)

* feat: side properties

* feat: show metadata

* feat: delete record expand

* feat: optimzie code

* fix: bug

---------

Co-authored-by: 杨国璇 <ygx@Hello-word.local>
This commit is contained in:
杨国璇
2024-08-06 17:30:11 +08:00
committed by GitHub
parent 1c169b5329
commit b043cb8491
63 changed files with 408 additions and 2490 deletions

View File

@@ -1,6 +1,6 @@
import React from 'react';
import PropTypes from 'prop-types';
import { MetadataProvider, CollaboratorsProvider, RecordDetailsProvider } from './hooks/index';
import { MetadataProvider, CollaboratorsProvider } from './hooks/index';
import { Table } from './components/index';
const SeafileMetadata = ({ ...params }) => {
@@ -8,9 +8,7 @@ const SeafileMetadata = ({ ...params }) => {
return (
<MetadataProvider { ...params }>
<CollaboratorsProvider >
<RecordDetailsProvider>
<Table />
</RecordDetailsProvider>
<Table />
</CollaboratorsProvider>
</MetadataProvider>
);