mirror of
https://github.com/strapi/strapi.git
synced 2025-08-09 09:14:49 +00:00
Fix PR feedback
Signed-off-by: soupette <cyril.lpz@gmail.com>
This commit is contained in:
parent
4855f244bc
commit
02dc3640d8
@ -88,8 +88,8 @@ const LeftMenuLinkContainer = ({ plugins }) => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Wrapper>
|
<Wrapper>
|
||||||
{menus.map((section, index) => (
|
{menus.map(section => (
|
||||||
<MenuSection key={index}>
|
<MenuSection>
|
||||||
{Object.entries(section).map(([key, value]) => (
|
{Object.entries(section).map(([key, value]) => (
|
||||||
<LeftMenuLinkSection
|
<LeftMenuLinkSection
|
||||||
key={key}
|
key={key}
|
||||||
|
@ -23,6 +23,8 @@ const UploadList = ({
|
|||||||
filesToUploadLength > 1 ? 'plural' : 'singular'
|
filesToUploadLength > 1 ? 'plural' : 'singular'
|
||||||
}`;
|
}`;
|
||||||
|
|
||||||
|
// TODO: use <IntlText ... /> instead of FormattedMessage
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<ModalSection justifyContent="space-between">
|
<ModalSection justifyContent="space-between">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user