Commit 51da1340 authored by Joel's avatar Joel

Merge branch 'feat/fe-support-datetime-tool' into deploy/dev

parents 3a73d7f4 ee6719a4
...@@ -43,7 +43,8 @@ const Summary: FC<ISummaryProps> = ({ ...@@ -43,7 +43,8 @@ const Summary: FC<ISummaryProps> = ({
plugins, plugins,
dataSets, dataSets,
}) => { }) => {
const pluginIds = Object.keys(plugins).filter(key => plugins[key]) // current_datetime is not configable and do not have icon
const pluginIds = Object.keys(plugins).filter(key => plugins[key] && key !== 'current_datetime')
const [isShowConfig, { setFalse: hideConfig, toggle: toggleShowConfig }] = useBoolean(false) const [isShowConfig, { setFalse: hideConfig, toggle: toggleShowConfig }] = useBoolean(false)
const configContentRef = React.useRef(null) const configContentRef = React.useRef(null)
......
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