Fix eslint pipeline fail hopefully

Sascha created

Change summary

webui/src/pages/bug/EditCommentForm.tsx | 8 ++++----
webui/src/pages/bug/Message.tsx         | 2 +-
2 files changed, 5 insertions(+), 5 deletions(-)

Detailed changes

webui/src/pages/bug/EditCommentForm.tsx 🔗

@@ -42,11 +42,11 @@ const useStyles = makeStyles<Theme, StyleProps>((theme) => ({
 type Props = {
   bug: BugFragment;
   comment: AddCommentFragment | CreateFragment;
-  onCancelClick?: () => void;
+  onCancel?: () => void;
   onPostSubmit?: (comments: any) => void;
 };
 
-function EditCommentForm({ bug, comment, onCancelClick, onPostSubmit }: Props) {
+function EditCommentForm({ bug, comment, onCancel, onPostSubmit }: Props) {
   const [editComment, { loading }] = useEditCommentMutation();
   const [message, setMessage] = useState<string>(comment.message);
   const [inputProp, setInputProp] = useState<any>('');
@@ -88,7 +88,7 @@ function EditCommentForm({ bug, comment, onCancelClick, onPostSubmit }: Props) {
 
   function getCancelButton() {
     return (
-      <Button onClick={onCancelClick} variant="contained">
+      <Button onClick={onCancel} variant="contained">
         Cancel
       </Button>
     );
@@ -104,7 +104,7 @@ function EditCommentForm({ bug, comment, onCancelClick, onPostSubmit }: Props) {
           inputText={comment.message}
         />
         <div className={classes.actions}>
-          {onCancelClick ? getCancelButton() : ''}
+          {onCancel && getCancelButton()}
           <Button
             className={classes.greenButton}
             variant="contained"

webui/src/pages/bug/Message.tsx 🔗

@@ -176,7 +176,7 @@ function Message({ bug, op }: Props) {
       <div className={classes.bubble}>
         <EditCommentForm
           bug={bug}
-          onCancelClick={cancelEdition}
+          onCancel={cancelEdition}
           onPostSubmit={onPostSubmit}
           comment={comment}
         />