Skip to content

Commit

Permalink
tiny changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
KhudaDad414 committed May 14, 2024
1 parent 257f359 commit 50e9720
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const servers = [
},
]

const addServerButtonPosition = { x: service.position.x + 500, y: service.position.y - 300 }
const addServerButtonPosition = { x: service.position.x + 600, y: service.position.y - 300 }

export const Default: Story = {
args: {
Expand Down Expand Up @@ -103,7 +103,7 @@ export const WithOperationSelected: Story = {
},
}

const operationsTooMany = new Array(20).fill("").map((_, i) => ({ id: `sendUserHasBeenRemoved${i}`, action: i% 3 === 0 ? OperationAction.RECEIVE : OperationAction.SEND, source: 'Production Kafka Broker' }));
const operationsTooMany = new Array(20).fill("").map((_, i) => ({ id: `${i% 3 === 0 ? "receive": "send"}Operation${i}`, action: i% 3 === 0 ? OperationAction.RECEIVE : OperationAction.SEND, source: 'Production Kafka Broker' }));
export const WithTooManyOperations: Story = {
args: {
service,
Expand Down

0 comments on commit 50e9720

Please sign in to comment.