Where is this "Select Value" placeholder located in code #29837
Replies: 1 comment 2 replies
-
The "Select Value" placeholder in the code for the Here is the relevant part of the code: const Select = forwardRef(
(
{
...
placeholder = t('Select ...'),
...
}: SelectProps,
ref: RefObject<HTMLInputElement>,
) => {
...
return (
<StyledContainer headerPosition={headerPosition}>
...
<StyledSelect
...
placeholder={placeholder}
...
>
...
</StyledSelect>
</StyledContainer>
);
},
); The |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm translating Superset to my language and stuck at
/roles/add
page:This "Select Value" seems like it's not located anywhere in code. I also searched for "Value" and "Select" separately, but also not succeeded.
Maybe it's from a Python libs, but still not sure.
Would appreciate any help.
Beta Was this translation helpful? Give feedback.
All reactions