Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -38,20 +38,15 @@ const AckPopover = (props: Props) => {
>
<div className={styles.popover}>
<EuiText size="m">
<EuiText size="s">
Are you sure to acknowledge
{' '}
<b>{id}</b>
?
</EuiText>
This will remove entry from pending list.
<b>{id}</b>
<br />
will be acknowledged and removed from the pending messages list
</EuiText>
<div className={styles.popoverFooter}>
<EuiButton
fill
size="s"
color="warning"
iconType="trash"
onClick={() => acknowledge(id)}
data-testid="acknowledge-submit"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import styles from './styles.module.scss'
const headerHeight = 60
const rowHeight = 54

const noItemsMessageString = 'There are no Messages in the Consumer Group.'
const noItemsMessageString = 'Your Consumer has no pending messages.'

export interface Props {
data: PendingEntryDto[]
Expand Down