Skip to content

Commit

Permalink
Merge pull request #28 from LightAPIs/editor
Browse files Browse the repository at this point in the history
fix(editor): Fix incorrect col header
  • Loading branch information
soulteary authored Dec 6, 2023
2 parents 4814a8f + b66eb01 commit 2911236
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion embed/templates/editor.html
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ <h2>应用编辑</h2>
let instanceBookmarks = new Handsontable(container, {
language: 'zh-CN',
data: Array.from(bookmarks),
colHeaders: ['书签名称', '书签地址', /*'私密'*/, '类型', '图标', '描述'],
colHeaders: ['书签名称', '书签地址', /*'私密',*/ '类型', '图标', '描述'],
rowHeaders: true,
manualRowMove: true,
contextMenu: ["row_above", "row_below", "---------", "undo", "redo", "---------", "cut", "copy"],
Expand Down
2 changes: 1 addition & 1 deletion internal/resources/templates/html/editor.html
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
let instanceBookmarks = new Handsontable(container, {
language: 'zh-CN',
data: Array.from(bookmarks),
colHeaders: ['书签名称', '书签地址', /*'私密'*/, '类型', '图标', '描述'],
colHeaders: ['书签名称', '书签地址', /*'私密',*/ '类型', '图标', '描述'],
rowHeaders: true,
manualRowMove: true,
contextMenu: ["row_above", "row_below", "---------", "undo", "redo", "---------", "cut", "copy"],
Expand Down

0 comments on commit 2911236

Please sign in to comment.