Skip to main content

Version: 24.10

Notes

The Notes Panel enables you to read, write, or reply to comments, depending on your permissions.

You can hide the notes panel completely using:

notesSection: false,

Example

src/configs/custom/process.ts
import { ConfigCurrentSpace } from '@transact-open-ux/workspaces/dist/types';

export const processConfig = ({ date, currentUser }: any): ConfigCurrentSpace => ({
label: 'Process',
icon: 'BallotOutlined',
permissions: {
type: 'role',
value: ['Processing Staff', 'Work Spaces Staff'],
},
notesSection: false,
hideTasks: {
'Funding Form': ['Funding', 'reviewtemplateform'],
'Origination Form': ['OriginationForm'],
},
...
});

export default processConfig;
In this topic