Commit a83aaafa by Your Name

isSzseEnv to true

parent 1aab6877
......@@ -42,6 +42,9 @@ module.exports = {
},
],
},
optimization:{
minimize: false
}
},
},
devServer: {
......
......@@ -54,7 +54,7 @@
},
"scripts": {
"start": "craco start --verbose",
"build": "craco build",
"build": "craco build --verbose",
"test": "craco test",
"eject": "react-scripts eject"
},
......
......@@ -12,7 +12,7 @@ import { DataModelerRoleAdmin, DataModelerRoleUser, DataModelerRoleReader, Asset
//内网深交所环境 isSzseEnv true
//元曜公网环境 isSzseEnv false
export const isSzseEnv = false;
export const isSzseEnv = true;
export const inputWidth = isSzseEnv?360:200;
......@@ -533,7 +533,7 @@ function getOffsetTop(element, container) {
}
export function getInternalCurrentAnchor(_linkIds, _offsetTop = 0, _bounds = 5, container) {
const linkSections: Section[] = [];
const linkSections = [];
_linkIds.forEach((id) => {
const target = container?.querySelector(`.${id}`);
if (target) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment