Skip to content

Commit

Permalink
[web] Drop no longer needed PF/Spinner#isSVG prop
Browse files Browse the repository at this point in the history
After its default value changed in the PatternFly 5.

See patternfly/patternfly-react#8183

Change made by https://github.com/patternfly/pf-codemods
  • Loading branch information
dgdavid committed Sep 12, 2023
1 parent e189f78 commit 86dbd9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/components/network/WifiNetworkListItem.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function WifiNetworkListItem ({ network, isSelected, isActive, onSelect, onCance
/>
<div className="split">
{/* TRANSLATORS: %s is replaced by a WiFi network name */}
{showSpinner && <Spinner isSVG size="md" aria-label={sprintf(_("%s connection is waiting for an state change"), network.ssid)} /> }
{showSpinner && <Spinner size="md" aria-label={sprintf(_("%s connection is waiting for an state change"), network.ssid)} /> }
<Text component="small" className="keep-words">
{ showSpinner && !network.connection && _("Connecting") }
{ networkState(network.connection?.state)}
Expand Down

0 comments on commit 86dbd9e

Please sign in to comment.