-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: remove useless required icon (#74)
* 2.0.13-0 * docs: update docs * fix: remove require icon
- Loading branch information
Showing
3 changed files
with
3 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,6 @@ | ||
import * as React from 'react'; | ||
import { CommonConfigurator } from 'src/components/DcCharts/common'; | ||
import ChartEditorStore from 'src/stores/chart-editor'; | ||
|
||
export default () => { | ||
const viewCopy = ChartEditorStore.useStore((s) => s.viewCopy); | ||
const { updateEditor } = ChartEditorStore; | ||
const fields = [{}]; | ||
|
||
return <CommonConfigurator fields={fields} />; | ||
return <CommonConfigurator />; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,6 @@ | ||
import * as React from 'react'; | ||
import { CommonConfigurator } from 'src/components/DcCharts/common'; | ||
import ChartEditorStore from 'src/stores/chart-editor'; | ||
|
||
export default () => { | ||
const viewCopy = ChartEditorStore.useStore((s) => s.viewCopy); | ||
const { updateEditor } = ChartEditorStore; | ||
const fields = [{}]; | ||
|
||
return <CommonConfigurator fields={fields} />; | ||
return <CommonConfigurator />; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters