Issue 2231 - added option for user to choose whether to export weather predictors#2245
Merged
Issue 2231 - added option for user to choose whether to export weather predictors#2245
Conversation
rmroot
approved these changes
Feb 25, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
connects #2231
This pull request introduces a new modal dialog for exporting account and facility data, allowing users to optionally include weather data in their exports. The changes affect the Manage Accounts, Account Home Summary, and Facility Home Summary components, updating both their UI and logic to support this new feature. Additionally, some minor UI and formatting improvements have been made.
Export Modal and Weather Data Option:
Added an export modal dialog to
ManageAccountsComponent,AccountHomeSummaryComponent, andFacilityHomeSummaryComponent, allowing users to choose whether to include weather data when exporting to Excel. The modal is triggered by a new "Export" button and includes a styled checkbox for the weather data option.Updated export logic in the relevant components and services to pass the
includeWeatherDataflag, ensuring the export includes weather data if selected.UI/Styling Improvements:
.checkbox-styleCSS classes for consistent checkbox sizing and label styling in export modals across components.Dependency Updates:
Imported
FormsModuleinAccountHomeModuleandFacilityHomeModuleto support two-way binding for the weather data checkbox in the export modals.Minor Formatting and Clean-up:
Cleaned up HTML formatting and improved consistency in button and badge layouts in several components.
These changes collectively enhance the export functionality by making it more flexible and user-friendly, while also improving code maintainability and UI consistency.