Skip to content

Commit

Permalink
Refs #143412 more eslint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ichim-david committed Dec 22, 2021
1 parent badcb91 commit a88c091
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/customizations/components/theme/Comment/Comment.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import { Button, Comment, Form, Header } from 'semantic-ui-react';
import { Comment, Header } from 'semantic-ui-react';

function CommentEEA({ title, comments, threaded, minimal, size }) {
return (
Expand Down
4 changes: 2 additions & 2 deletions src/customizations/components/theme/Menu/Menu.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export function MenuContent({
<Menu.Item
key={index}
name={item.key}
active={activeItem == item.key}
active={activeItem === item.key}
onClick={handleItemClick}
>
{item.name}
Expand All @@ -50,7 +50,7 @@ export function MenuContent({
);
}

const Template = (args) => <MenuContent {...args}></MenuContent>;
const Template = (args) => <MenuContent {...args} />;

export const Default = Template.bind({});
Default.args = {
Expand Down
4 changes: 2 additions & 2 deletions src/customizations/components/theme/Modal/Modal.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ export default {
},
dimmer: {
control: { type: 'select' },
options: [, true, 'inverted', 'blurring'],
options: [true, 'inverted', 'blurring'],
},
},
};

const trigger = <Button>Show Modal</Button>;

const Template = (args) => <Modal {...args}></Modal>;
const Template = (args) => <Modal {...args} />;

export const Default = Template.bind({});
Default.args = {
Expand Down

0 comments on commit a88c091

Please sign in to comment.