tangled
alpha
login
or
join now
notnite.com
/
moonlight
3
fork
atom
this repo has no description
3
fork
atom
overview
issues
pulls
pipelines
move speeny class to icon, rather than entire button
emma
11 months ago
1963c66e
edb548c9
+2
-2
1 changed file
expand all
collapse all
unified
split
packages
core-extensions
src
moonbase
webpackModules
ui
extensions
filterBar.tsx
+2
-2
packages/core-extensions/src/moonbase/webpackModules/ui/extensions/filterBar.tsx
···
234
234
{...props}
235
235
size={Button.Sizes.MIN}
236
236
color={Button.Colors.CUSTOM}
237
237
-
className={`${ForumsClasses.sortDropdown} moonbase-retry-button ${checkingUpdates ? "moonbase-speen" : ""}`}
237
237
+
className={`${ForumsClasses.sortDropdown} moonbase-retry-button`}
238
238
innerClassName={ForumsClasses.sortDropdownInner}
239
239
onClick={() => {
240
240
(async () => {
···
249
249
})();
250
250
}}
251
251
>
252
252
-
<RetryIcon size={"custom"} width={16} />
252
252
+
<RetryIcon size={"custom"} width={16} className={checkingUpdates ? "moonbase-speen" : ""} />
253
253
</Button>
254
254
)}
255
255
</Tooltip>