mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-26 04:17:15 +03:00
refactor: rename logo to domain
This commit is contained in:
parent
5560476ea0
commit
51fc383b1a
@ -1,5 +1,5 @@
|
||||
export interface Company {
|
||||
id: number;
|
||||
name: string;
|
||||
logo: string;
|
||||
domain: string;
|
||||
}
|
||||
|
@ -48,7 +48,7 @@ const defaultData: Array<Person> = [
|
||||
fullName: 'Alexandre Prot',
|
||||
picture: personPlaceholder,
|
||||
email: 'alexandre@qonto.com',
|
||||
company: { id: 1, name: 'Qonto', logo: 'https://qonto.eu/logo.png' },
|
||||
company: { id: 1, name: 'Qonto', domain: 'qonto.com' },
|
||||
phone: '06 12 34 56 78',
|
||||
creationDate: new Date('Feb 23, 2018'),
|
||||
pipe: { id: 1, name: 'Sales Pipeline', icon: 'faUser' },
|
||||
@ -59,7 +59,7 @@ const defaultData: Array<Person> = [
|
||||
fullName: 'Alexandre Prot',
|
||||
picture: personPlaceholder,
|
||||
email: 'alexandre@qonto.com',
|
||||
company: { id: 1, name: 'Qonto', logo: 'https://qonto.eu/logo.png' },
|
||||
company: { id: 1, name: 'Qonto', domain: 'qonto.com' },
|
||||
phone: '06 12 34 56 78',
|
||||
creationDate: new Date('Feb 23, 2018'),
|
||||
pipe: { id: 1, name: 'Sales Pipeline', icon: 'faUser' },
|
||||
@ -70,7 +70,7 @@ const defaultData: Array<Person> = [
|
||||
fullName: 'Alexandre Prot',
|
||||
picture: personPlaceholder,
|
||||
email: 'alexandre@qonto.com',
|
||||
company: { id: 1, name: 'Qonto', logo: 'https://qonto.eu/logo.png' },
|
||||
company: { id: 1, name: 'Qonto', domain: 'qonto.com' },
|
||||
phone: '06 12 34 56 78',
|
||||
creationDate: new Date('Feb 23, 2018'),
|
||||
pipe: { id: 1, name: 'Sales Pipeline', icon: 'faUser' },
|
||||
@ -81,7 +81,7 @@ const defaultData: Array<Person> = [
|
||||
fullName: 'Alexandre Prot',
|
||||
picture: personPlaceholder,
|
||||
email: 'alexandre@qonto.com',
|
||||
company: { id: 1, name: 'Qonto', logo: 'https://qonto.eu/logo.png' },
|
||||
company: { id: 1, name: 'Qonto', domain: 'qonto.com' },
|
||||
phone: '06 12 34 56 78',
|
||||
creationDate: new Date('Feb 23, 2018'),
|
||||
pipe: { id: 1, name: 'Sales Pipeline', icon: 'faUser' },
|
||||
@ -92,7 +92,7 @@ const defaultData: Array<Person> = [
|
||||
fullName: 'Alexandre Prot',
|
||||
picture: personPlaceholder,
|
||||
email: 'alexandre@qonto.com',
|
||||
company: { id: 1, name: 'Qonto', logo: 'https://qonto.eu/logo.png' },
|
||||
company: { id: 1, name: 'Qonto', domain: 'qonto.com' },
|
||||
phone: '06 12 34 56 78',
|
||||
creationDate: new Date('Feb 23, 2018'),
|
||||
pipe: { id: 1, name: 'Sales Pipeline', icon: 'faUser' },
|
||||
@ -133,7 +133,7 @@ const columns = [
|
||||
cell: (props) => (
|
||||
<CellLink
|
||||
name={props.row.original.company.name}
|
||||
picture={props.row.original.company.logo}
|
||||
picture={props.row.original.company.domain}
|
||||
href="#"
|
||||
/>
|
||||
),
|
||||
|
Loading…
Reference in New Issue
Block a user