ESLint: All the single quotes

This commit is contained in:
regexowl 2025-08-05 13:52:45 +02:00 committed by Gianluca Zuccarelli
parent eafcd200ae
commit bb345c0e4f
118 changed files with 1269 additions and 1269 deletions

View file

@ -151,7 +151,7 @@ export const AzureSourcesSelect = () => {
const toggle = (toggleRef: React.Ref<MenuToggleElement>) => (
<MenuToggle
ref={toggleRef}
variant="typeahead"
variant='typeahead'
onClick={handleToggle}
isExpanded={isOpen}
isDisabled={!isSuccess}
@ -161,8 +161,8 @@ export const AzureSourcesSelect = () => {
value={selectedSource ? selectedSource : inputValue}
onClick={onInputClick}
onChange={onTextInputChange}
autoComplete="off"
placeholder="Select source"
autoComplete='off'
placeholder='Select source'
isExpanded={isOpen}
/>
@ -170,9 +170,9 @@ export const AzureSourcesSelect = () => {
<TextInputGroupUtilities>
<Button
icon={<TimesIcon />}
variant="plain"
variant='plain'
onClick={handleClear}
aria-label="Clear input"
aria-label='Clear input'
/>
</TextInputGroupUtilities>
)}
@ -194,8 +194,8 @@ export const AzureSourcesSelect = () => {
>
<SelectList>
{isFetching && (
<SelectOption key="loading" value="loader">
<Spinner size="lg" />
<SelectOption key='loading' value='loader'>
<Spinner size='lg' />
</SelectOption>
)}
{selectOptions.length > 0 &&