Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
star7th committed Dec 28, 2023
1 parent 263b5a1 commit 81a222a
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion web/index.html
Expand Up @@ -9,4 +9,4 @@
'../server/index.php?s=',
// "lang" :'en'
lang: 'zh-cn'
}</script><link href=./static/css/app.a79b72a3d4206013dd25f8cff9ad1d90.css rel=stylesheet></head><body class=grey-bg><div id=app></div><script type=text/javascript src=./static/js/manifest.3ad1d5771e9b13dbdad2.js></script><script type=text/javascript src=./static/js/vendor.339f5a1f86786a88b9d4.js></script><script type=text/javascript src=./static/js/app.f4db61493625d00c6cab.js></script></body></html>
}</script><link href=./static/css/app.a79b72a3d4206013dd25f8cff9ad1d90.css rel=stylesheet></head><body class=grey-bg><div id=app></div><script type=text/javascript src=./static/js/manifest.3ad1d5771e9b13dbdad2.js></script><script type=text/javascript src=./static/js/vendor.339f5a1f86786a88b9d4.js></script><script type=text/javascript src=./static/js/app.57a5542c88fd0f6f6949.js></script></body></html>
File renamed without changes
1 change: 1 addition & 0 deletions web/static/js/app.57a5542c88fd0f6f6949.js

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion web/static/js/app.f4db61493625d00c6cab.js

This file was deleted.

2 changes: 1 addition & 1 deletion web_src/src/models/itemTree.js
Expand Up @@ -74,7 +74,7 @@ const itemMenuDataToTreeData = menu => {
const getParentIds = (tree, pageId) => {
for (let i = 0; i < tree.length; i++) {
const node = tree[i]
if (node.id === pageId) {
if (node.id == pageId) {
return []
}
if (node.children && node.children.length > 0) {
Expand Down

0 comments on commit 81a222a

Please sign in to comment.