Skip to content

Commit

Permalink
Merge pull request #160 from Sanketika-Obsrv/open-source
Browse files Browse the repository at this point in the history
fix #OBS-I466 lower case of dataset id
  • Loading branch information
ravismula authored Jan 7, 2025
2 parents 793a9cf + 06cff7c commit 396a7d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions web-console-v2/src/components/Charts/GaugeChart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ const GaugeChart: React.FC<GaugeChartProps> = (props) => {
fontSize: 30,
transform: 'translate(0px, -19px)',
zIndex: 3,
fontFamily: 'Montserrat',
fontWeight: 700,
},
[`& .${gaugeClasses.valueArc}`]: {
fill: '#64B656',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ const Ingestion = () => {
if(datasetIdParam === '<new>') {
if (nameRegex.test(datasetName)) {
const generatedId = formatDatasetDetails(datasetName);
setDatasetId(generatedId);
setDatasetId(_.toLower(generatedId));
} else {
setNameError('The field should exclude any special characters, permitting only alphabets, numbers, ".", "-", and "_".');
}
Expand Down

0 comments on commit 396a7d2

Please sign in to comment.