Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feat-1012] Open widgets to production #1013

Merged
merged 2 commits into from
Dec 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/const/cards.const.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
import { WidgetName } from 'models/WidgetName';
import orYarokLogo from 'assets/greenlight.png';

// cards is this least will be avaiaable for operation environments (all non-staging environments)
// cards in this list will be available for operation environments (all non-staging environments)
export const operationalCards: WidgetName[] = [
WidgetName.accident_count_by_severity,
WidgetName.most_severe_accidents_table,
WidgetName.most_severe_accidents,
WidgetName.head_on_collisions_comparison_percentage,
WidgetName.vision_zero_2_plus_1,
WidgetName.injured_count_by_severity,
WidgetName.accidents_heat_map
WidgetName.accidents_heat_map,
WidgetName.accident_count_by_accident_year,
WidgetName.injured_count_by_accident_year,
WidgetName.accident_count_by_driver_type,
WidgetName.accident_count_by_day_night
];

export type OrgLogoData = {key : string, path:string} ;
Expand Down
Loading