feat: Support manila share group
1. Add manila share group page in console and administrator 2. Add console create share group 3. Add console edit share group 4. Add delete share group in console and administrator 5. Add share group detail page in console and administrator Change-Id: Ia96f38c2155210007faedb99bcf3ff49ae291245
This commit is contained in:
@@ -222,3 +222,16 @@ export const getNameRenderByRouter = (render, column, rowKey) => {
|
||||
);
|
||||
};
|
||||
};
|
||||
|
||||
export const idNameColumn = {
|
||||
title: t('ID/Name'),
|
||||
dataIndex: 'name',
|
||||
render: (value, record) => {
|
||||
return (
|
||||
<>
|
||||
<div>{record.id}</div>
|
||||
<div>{value}</div>
|
||||
</>
|
||||
);
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user