diff --git a/app/src/components/Sidebar/Publish/Publish.tsx b/app/src/components/Sidebar/Publish/Publish.tsx index b4a293d..7b3262d 100644 --- a/app/src/components/Sidebar/Publish/Publish.tsx +++ b/app/src/components/Sidebar/Publish/Publish.tsx @@ -193,7 +193,7 @@ class Publish extends React.Component { } private history() { - const items = this.state.history.map(message => ({ + const items = this.state.history.reverse().map(message => ({ title: message.topic, value: message.payload, }))