mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
UI: Enable Integrations > Advanced save button in GitOps Mode (#28748)
## For #28747 <img width="639" alt="Screenshot 2025-05-01 at 4 28 22 PM" src="https://github.com/user-attachments/assets/0808d9fd-8866-4eb1-a84e-bef1efdd6919" /> - [x] Changes file added for user-visible changes in `changes/ - [x] Manual QA for all new/changed functionality --------- Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
This commit is contained in:
parent
dfa5573469
commit
19c2e9197d
2 changed files with 9 additions and 13 deletions
1
changes/28747-allow-advanced-save-in-GOM
Normal file
1
changes/28747-allow-advanced-save-in-GOM
Normal file
|
|
@ -0,0 +1 @@
|
|||
* Enable saving Integrations > Advanced in GitOps mode
|
||||
|
|
@ -486,19 +486,14 @@ const Advanced = ({
|
|||
)}
|
||||
/>
|
||||
</div>
|
||||
<GitOpsModeTooltipWrapper
|
||||
tipOffset={-8}
|
||||
renderChildren={(disableChildren) => (
|
||||
<Button
|
||||
type="submit"
|
||||
disabled={Object.keys(formErrors).length > 0 || disableChildren}
|
||||
className="save-loading button-wrap"
|
||||
isLoading={isUpdatingSettings}
|
||||
>
|
||||
Save
|
||||
</Button>
|
||||
)}
|
||||
/>
|
||||
<Button
|
||||
type="submit"
|
||||
disabled={Object.keys(formErrors).length > 0}
|
||||
className="save-loading button-wrap"
|
||||
isLoading={isUpdatingSettings}
|
||||
>
|
||||
Save
|
||||
</Button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue