Skip to content

Commit ecf5a82

Browse files
committed
refactor: clean up regression issues on mappings page (#16857)
1 parent e6425b2 commit ecf5a82

File tree

4 files changed

+1
-9
lines changed

4 files changed

+1
-9
lines changed

airbyte-webapp/src/pages/connections/ConnectionMappingsPage/AddStreamForMappingComboBox.module.scss

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
}
2626

2727
&--secondary {
28-
border: variables.$border-thin solid colors.$grey-100;
2928
width: 150px;
3029

3130
input {
@@ -50,10 +49,6 @@
5049
}
5150
}
5251

53-
&.addStreamForMappingComboBox--secondary:hover input::placeholder {
54-
color: colors.$grey-400;
55-
}
56-
5752
&:not(.disabled):hover {
5853
border-color: colors.$grey-400;
5954
color: colors.$grey-600;

airbyte-webapp/src/pages/connections/ConnectionMappingsPage/HashFieldRow.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import { FormattedMessage } from "react-intl";
44

55
import { hashingMapperConfiguration } from "components/connection/ConnectionForm/schemas/mapperSchema";
66
import { FlexContainer } from "components/ui/Flex";
7-
import { Icon } from "components/ui/Icon";
87
import { ListBox, ListBoxControlButtonProps } from "components/ui/ListBox";
98
import { Text } from "components/ui/Text";
109

@@ -120,7 +119,6 @@ const SelectHashingMethodControlButton: React.FC<ListBoxControlButtonProps<Hashi
120119
return (
121120
<FlexContainer alignItems="center" gap="none">
122121
<Text color={isDisabled ? "grey300" : "darkBlue"}>{selectedOption.label}</Text>
123-
<Icon type="caretDown" color="disabled" />
124122
</FlexContainer>
125123
);
126124
};

airbyte-webapp/src/pages/connections/ConnectionMappingsPage/MappingRow.module.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
input {
1616
font-size: variables.$font-size-md;
17+
width: fit-content;
1718

1819
::placeholder {
1920
font-size: variables.$font-size-md;

airbyte-webapp/src/pages/connections/ConnectionMappingsPage/MappingTypeListBox.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { FormattedMessage } from "react-intl";
22

33
import { FlexContainer } from "components/ui/Flex";
4-
import { Icon } from "components/ui/Icon";
54
import { ListBox, ListBoxControlButtonProps } from "components/ui/ListBox";
65
import { Text } from "components/ui/Text";
76

@@ -75,7 +74,6 @@ export const MappingTypeListBox: React.FC<MappingTypeListBoxProps> = ({
7574
<Text as="span" color={isDisabled ? "grey300" : "darkBlue"}>
7675
<FormattedMessage id={mappingTypeLabels[selectedOption.value].title} />
7776
</Text>
78-
<Icon type="caretDown" color="disabled" />
7977
</FlexContainer>
8078
);
8179
};

0 commit comments

Comments
 (0)