Add Manage and Placement sections in widget side panel page for record page layouts (#19310)
https://github.com/user-attachments/assets/f6120c2e-95e7-4b9b-abb5-69a10c3f2f3b
This commit is contained in:
committed by
GitHub
parent
e048d03872
commit
1f3965e5f8
@@ -0,0 +1,11 @@
|
||||
import { type PageLayoutWidget } from '@/page-layout/types/PageLayoutWidget';
|
||||
|
||||
export const getWidgetConfigurationViewId = (
|
||||
configuration: PageLayoutWidget['configuration'],
|
||||
): string | null => {
|
||||
if ('viewId' in configuration && typeof configuration.viewId === 'string') {
|
||||
return configuration.viewId;
|
||||
}
|
||||
|
||||
return null;
|
||||
};
|
||||
Reference in New Issue
Block a user