mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Annotations: Fix issue with spinner always showing (#46686)
This commit is contained in:
parent
586272e5f0
commit
a9002e80b4
@ -46,7 +46,7 @@ export const AnnotationPicker = ({ annotation, events, onEnabledChanged }: Annot
|
||||
<InlineSwitch value={annotation.enable} onChange={() => onEnabledChanged(annotation)} disabled={loading} />
|
||||
</InlineField>
|
||||
<div className={styles.indicator}>
|
||||
<LoadingIndicator loading={true} onCancel={onCancel} />
|
||||
<LoadingIndicator loading={loading} onCancel={onCancel} />
|
||||
</div>
|
||||
</InlineFieldRow>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user