Skip to content

Commit 3ddc292

Browse files
authored
Merge pull request #1906 from visualize-admin/feat/remove-beta-tag
feat: removed beta tag
2 parents bcf550c + f204945 commit 3ddc292

File tree

3 files changed

+3
-16
lines changed

3 files changed

+3
-16
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ You can also check the
3636
- Added a way to do local visual regression testing of charts between
3737
different branches
3838

39-
# [4.9.5] - 2024-11-18
39+
# [4.9.5] - 2024-11-22
4040

4141
- Features
4242
- Added Newsletter, Bug Report and Feature Request sections to the home page
@@ -48,8 +48,10 @@ You can also check the
4848
- visualize.admin.ch links are now again visible in chart footnotes
4949
- Improved chart tooltips on small screens
5050
- % mode toggle no longer overlaps with the Y axis title
51+
- Merging of cubes beta tag has been removed
5152
- Dual line Chart Tooltip indicators are now fixed for smaller screens
5253

54+
5355
# [4.9.4] - 2024-11-06
5456

5557
- Features

app/configurator/components/add-dataset-dialog.tsx

-6
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ import {
6363
isConfiguring,
6464
useConfiguratorState,
6565
} from "@/configurator";
66-
import { BetaTag } from "@/configurator/components/beta-tag";
6766
import {
6867
Dimension,
6968
isJoinByComponent,
@@ -871,11 +870,6 @@ export const DatasetDialog = ({
871870
id: "chart.datasets.add-dataset-dialog.title",
872871
message: "Select dataset with shared dimensions",
873872
})}
874-
<BetaTag
875-
tagProps={{
876-
sx: { ml: 2, position: "relative", top: "-1rem" },
877-
}}
878-
/>
879873
</DialogTitle>
880874
<DialogContent>
881875
<Collapse in={isOpen}>

app/configurator/components/dataset-control-section.tsx

-9
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ import useDisclosure from "@/components/use-disclosure";
2222
import { getChartConfig } from "@/configurator";
2323
import { DatasetDialog } from "@/configurator/components/add-dataset-dialog";
2424
import { DatasetsBadge } from "@/configurator/components/badges";
25-
import { BetaTag } from "@/configurator/components/beta-tag";
2625
import {
2726
ControlSection,
2827
ControlSectionContent,
@@ -230,14 +229,6 @@ export const DatasetsControlSection = () => {
230229
<ControlSection collapse defaultExpanded={true}>
231230
<SubsectionTitle titleId="controls-data" gutterBottom={false}>
232231
<Trans id="controls.section.datasets.title">Datasets</Trans>{" "}
233-
<BetaTag
234-
tagProps={{
235-
sx: {
236-
ml: 2,
237-
fontWeight: "normal",
238-
},
239-
}}
240-
/>
241232
<DatasetsBadge sx={{ ml: "auto", mr: 4 }} />
242233
</SubsectionTitle>
243234
<ControlSectionContent

0 commit comments

Comments
 (0)