Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions .github/pull_request_template.md

This file was deleted.

31 changes: 17 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,21 +69,24 @@
"@sentry/integrations": "7.100.1",
"@sentry/react": "7.119.0",
"classnames": "2.3.1",
"cozy-bar": "^16.1.0",
"cozy-client": "^53.1.0",
"cozy-device-helper": "^3.7.1",
"cozy-devtools": "^1.2.1",
"cozy-bar": "^19.1.0",
"cozy-client": "^56.0.0",
"cozy-dataproxy-lib": "^4.1.0",
"cozy-device-helper": "^3.8.0",
"cozy-devtools": "^1.3.0",
"cozy-doctypes": "1.86.1",
"cozy-editor-core": "134.0.3",
"cozy-flags": "^4.6.1",
"cozy-intent": "^2.29.1",
"cozy-interapp": "^0.15.1",
"cozy-keys-lib": "^6.2.0",
"cozy-logger": "^1.16.1",
"cozy-realtime": "^5.6.1",
"cozy-sharing": "^21.2.0",
"cozy-stack-client": "^51.0.0",
"cozy-ui": "^116.0.0",
"cozy-flags": "^4.7.0",
"cozy-intent": "^2.30.0",
"cozy-interapp": "^0.16.0",
"cozy-keys-lib": "^6.3.0",
"cozy-logger": "^1.17.0",
"cozy-minilog": "^3.10.0",
"cozy-pouch-link": "^56.0.0",
"cozy-realtime": "^5.6.4",
"cozy-sharing": "^25.1.1",
"cozy-stack-client": "^56.0.0",
"cozy-ui": "^122.1.0",
"eventemitter2": "4.1.2",
"lodash": "4.17.21",
"prop-types": "15.8.1",
Expand All @@ -93,7 +96,7 @@
"react-dom": "16.14.0",
"react-inspector": "5.1.1",
"react-intl": "2.9.0",
"react-router-dom": "6.3.0",
"react-router-dom": "6.14.2",
"rooks": "7.1.1",
"rxjs": "5.5.12",
"styled-components": "3.4.10",
Expand Down
25 changes: 0 additions & 25 deletions src/assets/icons/icon-note-32.svg

This file was deleted.

2 changes: 1 addition & 1 deletion src/components/app.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ const App = ({ isPublic }) => {
)}

<Main>
<Content>
<Content className={isMobile ? '' : 'u-m-0 u-bdrs-0'}>
<AlertProvider>
{isPublic ? <PublicContext /> : <PrivateContext />}
</AlertProvider>
Expand Down
8 changes: 6 additions & 2 deletions src/components/notes/List/NoteRow.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { AppRoutes } from 'constants/routes'
import { DocumentTypes } from 'constants/strings'

import NoteIcon from 'assets/icons/icon-note-32.svg'
import styles from 'components/notes/List/list.styl'
import { generateReturnUrlToNotesIndex, getDriveLink } from 'lib/utils'
import React, { useState, useCallback, useMemo } from 'react'
Expand All @@ -19,6 +18,7 @@ import ActionsMenu from 'cozy-ui/transpiled/react/ActionsMenu'
import { makeActions } from 'cozy-ui/transpiled/react/ActionsMenu/Actions'
import Icon from 'cozy-ui/transpiled/react/Icon'
import IconButton from 'cozy-ui/transpiled/react/IconButton'
import FileTypeNoteIcon from 'cozy-ui/transpiled/react/Icons/FileTypeNote'
import Typography from 'cozy-ui/transpiled/react/Typography'
import { TableRow, TableCell } from 'cozy-ui/transpiled/react/deprecated/Table'
import { useAlert } from 'cozy-ui/transpiled/react/providers/Alert'
Expand Down Expand Up @@ -115,7 +115,11 @@ const NoteRow = ({ note, f, t, client }) => {
<TableCell
className={`${styles.tableCellName} u-flex u-flex-items-center u-fz-medium`}
>
<Icon icon={NoteIcon} size={32} className="u-mr-1 u-flex-shrink-0" />
<Icon
icon={FileTypeNoteIcon}
size={32}
className="u-mr-1 u-flex-shrink-0"
/>

{isMobile ? (
<div
Expand Down
Loading
Loading