mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-22 04:05:42 +00:00
When executing requests with pre-request or post-response scripts, the global environment color property was being stripped from YAML files. This happened because the save operation only passed `variables` through the IPC chain, and the workspace-environments store created a new environment object without preserving the existing `color` property. The fix passes the `color` property through the entire IPC chain: - Redux actions now include `color` in the save-global-environment IPC call - IPC handler accepts and forwards `color` to both stores - workspace-environments store includes `color` when creating the environment object - global-environments store preserves `color` when updating Fixes #7348 Co-authored-by: Chirag Chandrashekhar <cchirag85@gmail.com>