Skip to content

Commit

Permalink
Merge pull request #64 from kaleido-io/message-author
Browse files Browse the repository at this point in the history
Message timeline now uses key instead of author
  • Loading branch information
peterbroadhurst authored Oct 11, 2021
2 parents f8d31fa + cbdfd01 commit 3aee592
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "firefly-ui",
"version": "0.3.1",
"version": "0.3.2",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.4",
Expand Down
1 change: 1 addition & 0 deletions src/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ export interface IFireflyHeader {
type: string;
txtype: string;
author: string;
key: string;
created: string;
namespace: string;
topic: string[];
Expand Down
2 changes: 1 addition & 1 deletion src/views/Messages/MessageTimeline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export const MessageTimeline: React.FC<Props> = ({ setViewMessage }) => {
key: message.header.id,
title: message.header.type,
description: message.header.tag,
author: message.header.author,
author: message.header.key,
time: dayjs(message.header.created).format('MM/DD/YYYY h:mm A'),
icon: <BroadcastIcon />,
onClick: () => {
Expand Down

0 comments on commit 3aee592

Please sign in to comment.