Skip to content

Commit fd6ba60

Browse files
committed
Merge remote-tracking branch 'upstream/dev' into dev
2 parents bdb8045 + 0021832 commit fd6ba60

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

core/src/main/java/datart/core/common/RequestContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public static void clean() {
4949
}
5050

5151
public static void setSql(String sqlStr) {
52-
if (scriptPermission.get()) {
52+
if (scriptPermission.get() != null && scriptPermission.get()) {
5353
sql.set(sqlStr);
5454
}
5555
}
Lines changed: 1 addition & 1 deletion
Loading

frontend/src/app/components/ChartGraph/BasicRichText/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ const config: ChartConfig = {
6565
label: 'delta.richText',
6666
key: 'richText',
6767
default: '',
68-
comType: 'text',
68+
comType: 'input',
6969
},
7070
],
7171
},

frontend/src/app/pages/DashBoardPage/hooks/useSlideStyle.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
import gridSvg from 'assets/svgs/grid.svg';
19+
import gridSvg from 'app/assets/images/grid.svg';
2020
import { useCallback, useEffect, useMemo, useState } from 'react';
2121
function useSlideStyle(
2222
autoFit: boolean | undefined,

frontend/src/assets/svgs/mention.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)