Skip to content

Commit

Permalink
Merge pull request #1178 from merico-dev/1146-some-bugs-about-additio…
Browse files Browse the repository at this point in the history
…nal_series-of-radar-chart

1146 some bugs about additional series of radar chart
  • Loading branch information
GerilLeto authored Sep 13, 2023
2 parents a63242e + 7a7d8e3 commit e753981
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 14 deletions.
2 changes: 1 addition & 1 deletion api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devtable/api",
"version": "10.33.0",
"version": "10.33.1",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion dashboard/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devtable/dashboard",
"version": "10.33.0",
"version": "10.33.1",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,7 @@ export function AdditionalSeriesItemField({ control, index, remove }: Props) {
render={({ field }) => <DataFieldSelector label="Color Key" required clearable sx={{ flex: 1 }} {...field} />}
/>
</Stack>
<Button
mt={20}
leftIcon={<Trash size={16} />}
color="red"
variant="light"
onClick={() => remove(index)}
disabled={index === 0}
>
<Button mt={20} leftIcon={<Trash size={16} />} color="red" variant="light" onClick={() => remove(index)}>
Delete
</Button>
</Stack>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function v5(legacyConf: any, { panelModel }: IMigrationEnv): IRadarChartConf {

function v6(legacyConf: $TSFixMe): IRadarChartConf {
const patch = {
additionalSeries: [],
additional_series: [],
};
return _.defaultsDeep(patch, legacyConf);
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devtable/root",
"version": "10.33.0",
"version": "10.33.1",
"private": true,
"workspaces": [
"api",
Expand Down
2 changes: 1 addition & 1 deletion settings-form/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devtable/settings-form",
"version": "10.33.0",
"version": "10.33.1",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
Expand Down
2 changes: 1 addition & 1 deletion website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@devtable/website",
"private": true,
"license": "Apache-2.0",
"version": "10.33.0",
"version": "10.33.1",
"scripts": {
"dev": "vite",
"preview": "vite preview"
Expand Down

0 comments on commit e753981

Please sign in to comment.