diff --git a/src/Flows.js b/src/Flows.js index 63596d8..ab6b395 100644 --- a/src/Flows.js +++ b/src/Flows.js @@ -1112,6 +1112,7 @@ export class Flow extends PureComponent { title: '', data: [], }, + export_text: '', loading_status: 'done', error_msg: null, }; @@ -1256,6 +1257,7 @@ export class Flow extends PureComponent { }, mode: 'attention_finished', loading_status: 'done', + export_text: json.data.map(post => `#${post.pid}`).join('\n'), }); }) .catch(failed); @@ -1295,6 +1297,14 @@ export class Flow extends PureComponent { const should_deletion_detect = localStorage['DELETION_DETECT'] === 'on'; return (
+ {this.state.export_text && ( + + )}