You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Simplify identification of each aggregation element in aggregation builder. (#10387)
* Display background for each element section instead of each element.
* Display add section button as icon next to element headline
* Cleaning up previous changes
* Improving naming of add element section button title.
* Removing no longer needed "Add a sort" button.
* Removing no longer needed import.
* Renaming `addEmptySection` to `addEmptyElement`.
* Renaming `allowAddSection` to `allowAddEmptyElement`.
* Renaming `onAddElementSection` to `onAddEmptyElement`.
* Implementing proper theme colors for recent aggregation builder layout changes.
* Add gap between aggregation builder controls and visualization.
* Add border for element configuration form containers.
* Fixing style linter warnings.
* Fixing remaining style linter warnings.
Copy file name to clipboardExpand all lines: graylog2-web-interface/src/views/components/aggregationwizard/aggregationElements/AggregationElementType.ts
+1
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,7 @@ import type { WidgetConfigFormValues, WidgetConfigValidationErrors } from '../Wi
Copy file name to clipboardExpand all lines: graylog2-web-interface/src/views/components/aggregationwizard/elementConfiguration/ElementConfigurationContainer.test.tsx
+15-15
Original file line number
Diff line number
Diff line change
@@ -22,8 +22,8 @@ import ElementConfigurationContainer from './ElementConfigurationContainer';
22
22
describe('ElementConfigurationContainer',()=>{
23
23
it('should render elements passed as children',()=>{
Copy file name to clipboardExpand all lines: graylog2-web-interface/src/views/components/aggregationwizard/elementConfiguration/ElementConfigurationContainer.tsx
Copy file name to clipboardExpand all lines: graylog2-web-interface/src/views/components/aggregationwizard/elementConfiguration/ElementConfigurationSection.tsx
Copy file name to clipboardExpand all lines: graylog2-web-interface/src/views/components/aggregationwizard/elementConfiguration/GroupByConfiguration.tsx
+17-31
Original file line number
Diff line number
Diff line change
@@ -20,21 +20,14 @@ import { useFormikContext, FieldArray, Field } from 'formik';
0 commit comments