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
1 change: 1 addition & 0 deletions src/sentry/static/sentry/app/components/activity/note.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ class Note extends React.Component {
<a onClick={onEdit}>{t('Edit')}</a>
<LinkWithConfirmation
className="danger"
title="Remove"
message={t('Are you sure you wish to delete this comment?')}
onConfirm={onDelete}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ const NoteInput = createReactClass({
let btnText = updating ? t('Save Comment') : t('Post Comment');

return (
<form className={classNames} onSubmit={this.onSubmit}>
<form noValidate className={classNames} onSubmit={this.onSubmit}>
<div className="activity-notes">
<ul className="nav nav-tabs">
<li className={!preview ? 'active' : ''}>
Expand Down
2 changes: 1 addition & 1 deletion src/sentry/static/sentry/app/views/groupActivity/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ const GroupActivity = createReactClass({
<NoteContainer
group={group}
item={item}
key={itemIdx}
key={'note' + itemIdx}
author={author}
onDelete={this.onNoteDelete}
sessionUser={me}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
exports[`NoteInput renders 1`] = `
<form
className="activity-field"
noValidate={true}
onSubmit={[Function]}
>
<div
Expand Down