mirror of
https://github.com/mue/mue.git
synced 2026-07-24 01:07:23 +02:00
chore: run lint and prettier
This commit is contained in:
@@ -120,4 +120,4 @@ class QuickLinks extends PureComponent {
|
||||
}
|
||||
}
|
||||
|
||||
export { QuickLinks as default, QuickLinks };
|
||||
export { QuickLinks as default, QuickLinks };
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
export * from './options';
|
||||
export * from './QuickLinks';
|
||||
export * from './QuickLinks';
|
||||
|
||||
@@ -52,8 +52,18 @@ const QuickLink = ({ item, deleteLink, startEditLink }) => {
|
||||
</div>
|
||||
<div>
|
||||
<div className="messageAction">
|
||||
<Button type="settings" onClick={() => startEditLink(item)} icon={<MdEdit />} label={variables.getMessage('modals.main.settings.sections.quicklinks.edit')} />
|
||||
<Button type="settings" onClick={(e) => deleteLink(item.key, e)} icon={ <MdCancel />} label={variables.getMessage('modals.main.marketplace.product.buttons.remove')} />
|
||||
<Button
|
||||
type="settings"
|
||||
onClick={() => startEditLink(item)}
|
||||
icon={<MdEdit />}
|
||||
label={variables.getMessage('modals.main.settings.sections.quicklinks.edit')}
|
||||
/>
|
||||
<Button
|
||||
type="settings"
|
||||
onClick={(e) => deleteLink(item.key, e)}
|
||||
icon={<MdCancel />}
|
||||
label={variables.getMessage('modals.main.marketplace.product.buttons.remove')}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1 +1 @@
|
||||
export * from './QuickLinksOptions';
|
||||
export * from './QuickLinksOptions';
|
||||
|
||||
Reference in New Issue
Block a user