Skip to content

Commit

Permalink
feat: add uuid in history tab
Browse files Browse the repository at this point in the history
  • Loading branch information
kungfuboy committed Jun 29, 2022
1 parent 925c118 commit f2c27d1
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ export class HistoryComponent implements OnInit {
// this.message.send({ type: 'gotoApiTest', data });
this.message.send({
type: 'gotoApiTest',
data: { ...data, origin: { method: data.request.method.toUpperCase(), title: '测试历史' } },
data: {
...data,
origin: { method: data.request.method.toUpperCase(), title: '测试历史', key: `history_${data.uuid}` },
},
});
}

Expand Down

0 comments on commit f2c27d1

Please sign in to comment.