Skip to content
Merged

Dev #428

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export function getCompContainer<T extends CompConstructor>(params: GetContainer
const reduceFn = wrapWithPromiseHandling((act: CompAction) => {
let action = act;
if (reduceContext && reduceContext.readOnly && action.editDSL) {
log.error("editDSL should be false in view mode, action: ", action);
log.info("editDSL should be false in view mode, action: ", action);
action = { ...action, editDSL: false };
}

Expand Down
4 changes: 3 additions & 1 deletion client/packages/lowcoder/vite.config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ const isEEGlobal = edition === "enterprise-global";
const isEE = edition === "enterprise" || isEEGlobal;
const isDev = nodeEnv === "development";
const isVisualizerEnabled = !!process.env.ENABLE_VISUALIZER;
const browserCheckFileName = `browser-check-${process.env.REACT_APP_COMMIT_ID}.js`;
// the file was never created
// const browserCheckFileName = `browser-check-${process.env.REACT_APP_COMMIT_ID}.js`;
const browserCheckFileName = `browser-check.js`;
const base = ensureLastSlash(process.env.PUBLIC_URL);

if (!apiProxyTarget && isDev) {
Expand Down