mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-04-19 20:08:05 +00:00
12 lines
266 B
TypeScript
12 lines
266 B
TypeScript
import { Node } from '@ali/lowcode-designer';
|
|
|
|
export function nodeTopFixedReducer(props: any, node: Node) {
|
|
if (node.componentMeta.isTopFixed) {
|
|
return {
|
|
...props,
|
|
// experimental prop value
|
|
__isTopFixed__: true,
|
|
};
|
|
}
|
|
return props;
|
|
} |