Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1573 cant change axis label rotation #1574

Merged
merged 3 commits into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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": "13.43.12",
"version": "13.43.13",
"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": "13.43.12",
"version": "13.43.13",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const AxisLabelRotateInput = forwardRef(
if (typeof v === 'string') {
return;
}
onChange;
onChange(v);
}}
/>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export function SeriesItemField({ control, index, seriesItem, yAxisOptions }: IS
)}
/>
</Group>
<Group grow wrap="nowrap">
<SimpleGrid cols={2}>
<Controller
name={`series.${index}.y_axis_data_key`}
control={control}
Expand All @@ -91,7 +91,7 @@ export function SeriesItemField({ control, index, seriesItem, yAxisOptions }: IS
/>
)}
/>
</Group>
</SimpleGrid>
<Group grow>
<Controller
name={`series.${index}.group_by_key`}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export function SeriesItemField({ control, index, seriesItem, xAxisOptions }: IS
)}
/>
</Group>
<Group grow wrap="nowrap">
<SimpleGrid cols={2}>
<Controller
name={`series.${index}.data_key`}
control={control}
Expand All @@ -67,7 +67,7 @@ export function SeriesItemField({ control, index, seriesItem, xAxisOptions }: IS
/>
)}
/>
</Group>
</SimpleGrid>
<Group grow>
<Controller
name={`series.${index}.group_by_key`}
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": "13.43.12",
"version": "13.43.13",
"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": "13.43.12",
"version": "13.43.13",
"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": "13.43.12",
"version": "13.43.13",
"scripts": {
"dev": "vite",
"preview": "vite preview"
Expand Down
Loading