We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 945010d commit ccbf786Copy full SHA for ccbf786
src/containers/AdminCampaignEdit/components/SectionWrapper.tsx
@@ -181,7 +181,11 @@ export const SectionWrapper: React.FC<WrapperProps> = (props) => {
181
const cardHeaderStyle: React.CSSProperties = {};
182
183
if (isSaving) {
184
- avatar = <CircularProgress className={classes.cardAvatar} />;
+ avatar = (
185
+ <CircularProgress
186
+ className={clsx(classes.cardAvatar, classes.cardAvatarEmpty)}
187
+ />
188
+ );
189
classNames.push(classes.saving);
190
cardHeaderStyle.width = `${progressPercent}%`;
191
} else if (active && expandable) {
0 commit comments