We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d251ce commit 0ffca2bCopy full SHA for 0ffca2b
app-engine/frontend/src/components/timeLine/index.tsx
@@ -67,6 +67,7 @@ const TimeLineFc = (props) => {
67
setTimeList([]);
68
setPage(1);
69
hasMoreRef.current = true;
70
+ elsaReadOnlyRef.current = true;
71
window.agent?.readOnly();
72
73
Promise.all([
app-engine/frontend/src/pages/components/header.tsx
@@ -164,6 +164,9 @@ const ChoreographyHead = (props) => {
164
165
// 实时保存数据
166
const updateGraph = async () => {
167
+ if (preview) {
168
+ return;
169
+ }
170
const currentApp = cloneDeep(appInfo);
171
currentApp.flowGraph.appearance = window.agent.serialize();
172
await updateFlowInfo(tenantId, appId, currentApp.flowGraph);
0 commit comments