Skip to content

Commit

Permalink
修复标签列表标题错误问题
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean-214 committed Feb 18, 2021
1 parent 7d79ae7 commit d79310c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "last-session",
"version": "1.1.3",
"version": "1.1.4",
"private": true,
"scripts": {
"lint": "eslint --fix --ignore-pattern \"src/assets/iconfont/**\" \"src/**/*.js\"",
Expand Down
2 changes: 1 addition & 1 deletion src/popup/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ document.addEventListener('DOMContentLoaded', () => {
chrome.runtime.sendMessage({ command: 'setRemoved', data: { url, removed: true } });
});
const titleText = document.createTextNode(item.title);
title.title = titleText;
title.title = item.title;
title.appendChild(titleText);
// 创建列表项
const li = document.createElement('li');
Expand Down

0 comments on commit d79310c

Please sign in to comment.