mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-05 09:47:20 +00:00
fix: 😈 table 无法选中问题
This commit is contained in:
parent
1dd340ae44
commit
34825f8a65
@ -102,8 +102,8 @@ context.use(HOOKS.VE_SETTING_FIELD_VARIABLE_SETTER, VariableSetter);
|
|||||||
const externals = ['react', 'react-dom', 'prop-types', 'react-router', 'react-router-dom', '@ali/recore'];
|
const externals = ['react', 'react-dom', 'prop-types', 'react-router', 'react-router-dom', '@ali/recore'];
|
||||||
|
|
||||||
async function loadAssets() {
|
async function loadAssets() {
|
||||||
const legaoAssets = await editor.utils.get('./raxAssets.json');
|
// const legaoAssets = await editor.utils.get('./raxAssets.json');
|
||||||
// const legaoAssets = await editor.utils.get('./legao-assets.json');
|
const legaoAssets = await editor.utils.get('./legao-assets.json');
|
||||||
|
|
||||||
const assets = upgradeAssetsBundle(legaoAssets);
|
const assets = upgradeAssetsBundle(legaoAssets);
|
||||||
|
|
||||||
@ -145,11 +145,11 @@ async function loadAssets() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function loadSchema() {
|
async function loadSchema() {
|
||||||
const schema = await editor.utils.get('./rax.json');
|
// const schema = await editor.utils.get('./rax.json');
|
||||||
// const schema = await editor.utils.get('./schema.json');
|
const schema = await editor.utils.get('./schema.json');
|
||||||
editor.set('schema', schema);
|
editor.set('schema', schema);
|
||||||
editor.set('renderEnv', 'rax');
|
// editor.set('renderEnv', 'rax');
|
||||||
editor.set('clientTypes', ['mobile']);
|
// editor.set('clientTypes', ['mobile']);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -264,6 +264,9 @@ export class WidgetView extends Component<{ widget: IWidget }> {
|
|||||||
}
|
}
|
||||||
render() {
|
render() {
|
||||||
const { widget } = this.props;
|
const { widget } = this.props;
|
||||||
return <div className={classNames('lc-widget-view-container', { hidden: !widget.visible })}>{widget.body}</div>;
|
if (!widget.visible) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
return widget.body;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user