Skip to content

Commit

Permalink
feat(redmine 1302081): second fix pr review
Browse files Browse the repository at this point in the history
  • Loading branch information
subraAntoine committed Jul 2, 2024
1 parent 10e4085 commit 5ed236b
Showing 1 changed file with 19 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const menusMock: IMenuItem<string>[] = [

export interface IAgendaItemTab {
content: {
composent?: ReactNode;
body?: ReactNode;
description?: string;
title?: string;
};
Expand All @@ -64,7 +64,7 @@ export const tabsMock: IAgendaItemOrder[] = [
tabs: [
{
content: {
composent: (
body: (
<>
<p>Content of Order 1</p>
<p>Tab order</p>
Expand All @@ -83,7 +83,7 @@ export const tabsMock: IAgendaItemOrder[] = [
},
{
content: {
composent: (
body: (
<>
<p>Content of Order 1</p>
<p>Tab conflicts</p>
Expand All @@ -94,7 +94,7 @@ export const tabsMock: IAgendaItemOrder[] = [
},
{
content: {
composent: (
body: (
<>
<p>Content of Order 1</p>
<p>Tab sends</p>
Expand All @@ -105,7 +105,7 @@ export const tabsMock: IAgendaItemOrder[] = [
},
{
content: {
composent: (
body: (
<>
<p>Content of Order 1</p>
<p>Tab pv</p>
Expand All @@ -116,7 +116,7 @@ export const tabsMock: IAgendaItemOrder[] = [
},
{
content: {
composent: (
body: (
<>
<p>Content of Order 1</p>
<p>Tab decisions</p>
Expand All @@ -127,7 +127,7 @@ export const tabsMock: IAgendaItemOrder[] = [
},
{
content: {
composent: (
body: (
<>
<p>Content of Order 1</p>
<p>Tab history</p>
Expand All @@ -141,7 +141,7 @@ export const tabsMock: IAgendaItemOrder[] = [
{
id: '2',
tabs: [
{ content: { composent: 'Content of Order 2, Tab order' }, id: 'order' },
{ content: { body: 'Content of Order 2, Tab order' }, id: 'order' },
{
content: {
description: '',
Expand All @@ -150,25 +150,25 @@ export const tabsMock: IAgendaItemOrder[] = [
id: 'details',
},
{
content: { composent: 'Content of Order 2, Tab conflicts' },
content: { body: 'Content of Order 2, Tab conflicts' },
id: 'conflicts',
},
{ content: { composent: 'Content of Order 2, Tab sends' }, id: 'sends' },
{ content: { composent: 'Content of Order 2, Tab pv' }, id: 'pv' },
{ content: { body: 'Content of Order 2, Tab sends' }, id: 'sends' },
{ content: { body: 'Content of Order 2, Tab pv' }, id: 'pv' },
{
content: { composent: 'Content of Order 2, Tab decisions' },
content: { body: 'Content of Order 2, Tab decisions' },
id: 'decisions',
},
{
content: { composent: 'Content of Order 2, Tab history' },
content: { body: 'Content of Order 2, Tab history' },
id: 'history',
},
],
},
{
id: '3',
tabs: [
{ content: { composent: 'Content of Order 3, Tab order' }, id: 'order' },
{ content: { body: 'Content of Order 3, Tab order' }, id: 'order' },
{
content: {
description: '',
Expand All @@ -177,17 +177,17 @@ export const tabsMock: IAgendaItemOrder[] = [
id: 'details',
},
{
content: { composent: 'Content of Order 3, Tab conflicts' },
content: { body: 'Content of Order 3, Tab conflicts' },
id: 'conflicts',
},
{ content: { composent: 'Content of Order 3, Tab order' }, id: 'sends' },
{ content: { composent: 'Content of Order 3, Tab pv' }, id: 'pv' },
{ content: { body: 'Content of Order 3, Tab order' }, id: 'sends' },
{ content: { body: 'Content of Order 3, Tab pv' }, id: 'pv' },
{
content: { composent: 'Content of Order 3, Tab decisions' },
content: { body: 'Content of Order 3, Tab decisions' },
id: 'decisions',
},
{
content: { composent: 'Content of Order 3, Tab history' },
content: { body: 'Content of Order 3, Tab history' },
id: 'history',
},
],
Expand Down

0 comments on commit 5ed236b

Please sign in to comment.