This commit is contained in:
Ian Bicking 2018-07-18 15:16:46 -05:00
Родитель d984f457f4
Коммит 53939ac274
3 изменённых файлов: 9 добавлений и 7 удалений

Просмотреть файл

@ -1,3 +1,5 @@
/* globals captureText, Readability */
(function () {
const SCREENSHOT_WIDTH = 350;
@ -37,7 +39,7 @@
async function onMessage(message) {
if (message.type !== "getData") {
console.warn("Unexpected message type:", message.type);
return;
return undefined;
}
browser.runtime.onMessage.removeListener(onMessage);
let data = {

Просмотреть файл

@ -65,12 +65,12 @@ this.emailTemplates = (function () {
class JustLinks extends React.Component {
render() {
let tabList = this.props.tabs.map(tab => {
let tabList = this.props.tabs.map((tab, index) => {
let selection = null;
if (tab.selection) {
selection = <Fragment>{selectionDisplay(tab.selection)} <br /><br /></Fragment>;
}
return <Fragment>
return <Fragment key={index}>
<a href={tab.url}>{tab.title}</a> <br />
{ selection }
</Fragment>;
@ -90,10 +90,10 @@ this.emailTemplates = (function () {
}
let readability = "no readability";
if (tab.readability && tab.readability.content) {
let hr = index === this.props.tabs.length -1 ? null : <hr />;
let hr = index === this.props.tabs.length - 1 ? null : <hr />;
readability = <Fragment><div dangerouslySetInnerHTML={{__html: tab.readability.content}} /> { hr }</Fragment>;
}
return <Fragment>
return <Fragment key={index}>
<a href={tab.url}>{tab.title}</a> <br />
{ selection }
{ readability }

Просмотреть файл

@ -185,8 +185,8 @@ class TemplateItem extends React.Component {
if (this.props.selected) {
className += " selected";
}
return <li className={className} onClick={this.selectTemplate.bind(this)} role="button">
{this.props.title}
return <li className={className}>
<button onClick={this.selectTemplate.bind(this)}>{this.props.title}</button>
</li>;
}