Skip to content

Commit

Permalink
Data warehouse UI improvements (#20804)
Browse files Browse the repository at this point in the history
* Add output button only capitalise the first letter of the first word

* fix section action click toggling the section
  • Loading branch information
gally47 authored Oct 30, 2024
1 parent e23b3bf commit 723d38c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion graylog2-web-interface/src/components/common/Section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const Section = ({ title, header, actions, headerLeftSection, collapsible = fals
{headerLeftSection && <FlexWrapper onClick={(e) => { e.stopPropagation(); }}>{headerLeftSection}</FlexWrapper>}
</FlexWrapper>
<FlexWrapper>
{actions && <div>{actions}</div>}
{actions && <div onClick={(e) => { e.stopPropagation(); }}>{actions}</div>}
{collapsible && (
<Button bsSize="sm"
bsStyle={opened ? 'primary' : 'default'}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ const AddOutputButton = ({ stream, getTypeDefinition, assignableOutputs, availab
bsSize="sm"
onClick={onShowAddOutput}
title="Edit Output">
<Icon name="add" size="sm" /> Add Output
<Icon name="add" size="sm" /> Add output
</Button>
{showAddOutput && (
<BootstrapModalWrapper showModal
Expand Down

0 comments on commit 723d38c

Please sign in to comment.