Skip to content

Commit 12b123e

Browse files
committed
fixes
1 parent 6932f78 commit 12b123e

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

src/views/ChartRecBox.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1146,7 +1146,10 @@ export const ChartRecBox: FC<ChartRecBoxProps> = function ({ tableId, placeHolde
11461146
"& .MuiInput-underline:not(.Mui-disabled):before": {
11471147
borderBottom: 'none',
11481148
},
1149-
"& .MuiInput-underline:(.Mui-disabled):before": {
1149+
"& .MuiInput-underline.Mui-disabled:before": {
1150+
borderBottom: 'none',
1151+
},
1152+
"& .MuiInput-underline.Mui-disabled:after": {
11501153
borderBottom: 'none',
11511154
},
11521155
"& .MuiInput-underline:after": {

src/views/UnifiedDataUploadDialog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,7 @@ export const UnifiedDataUploadDialog: React.FC<UnifiedDataUploadDialogProps> = (
796796
</IconButton>
797797
)}
798798
<Typography variant="h6" component="span">
799-
{activeTab === 'menu' ? 'Add Data' : getCurrentTabTitle()}
799+
{activeTab === 'menu' ? 'Load Data' : getCurrentTabTitle()}
800800
</Typography>
801801
{activeTab === 'extract' && dataCleanBlocks.length > 0 && (
802802
<Tooltip title="Reset extraction">

0 commit comments

Comments
 (0)