diff --git a/packages/cozy-viewer/src/Panel/Informations.jsx b/packages/cozy-viewer/src/Panel/Informations.jsx
index bf6ea5a2b0..e1e3f59cab 100644
--- a/packages/cozy-viewer/src/Panel/Informations.jsx
+++ b/packages/cozy-viewer/src/Panel/Informations.jsx
@@ -27,7 +27,7 @@ import { useI18n } from 'cozy-ui/transpiled/react/providers/I18n'
import { makeFormat, makeSize, makeDate, makePath } from './helpers'
import { withViewerLocales } from '../hoc/withViewerLocales'
-const Informations = ({ file, t }) => {
+const Informations = ({ file, isPublic, t }) => {
const [showMenu, setShowMenu] = useState(false)
const { f, lang } = useI18n()
const format = makeFormat(file)
@@ -69,11 +69,13 @@ const Informations = ({ file, t }) => {
primary={path}
secondary={t('Viewer.panel.informations.location')}
/>
-
- setShowMenu(v => !v)}>
-
-
-
+ {!isPublic && (
+
+ setShowMenu(v => !v)}>
+
+
+
+ )}
{showMenu && (
{
Informations.propTypes = {
file: PropTypes.object.isRequired,
+ isPublic: PropTypes.bool,
t: PropTypes.func
}