mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 12:19:41 +00:00
Update link & sync UI
This commit is contained in:
@@ -7,9 +7,16 @@ export function ProgressBar({
|
||||
fractionComplete,
|
||||
isRTL,
|
||||
}: {
|
||||
fractionComplete: number;
|
||||
fractionComplete: number | null;
|
||||
isRTL: boolean;
|
||||
}): JSX.Element {
|
||||
if (fractionComplete == null) {
|
||||
return (
|
||||
<div className="ProgressBar">
|
||||
<div className="ProgressBar__fill ProgressBar__fill--spinning" />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
return (
|
||||
<div className="ProgressBar">
|
||||
<div
|
||||
|
||||
Reference in New Issue
Block a user