Skip to content

Commit 5132f1b

Browse files
committed
fix(ldc): 修正账户信息显示条件判断
- 将账户信息组件中判断用户信息的条件从 userInfo.username 修改为 userInfo - 更新 package.json 中的版本号至 1.5.23以反映修改
1 parent 69689a2 commit 5132f1b

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
- feat(popupviews): 增加 Leaderboard 点数显示并优化样式和缓存逻辑
1+
- fix(ldc): 修正账户信息显示条件判断

entrypoints/PopupViews/components/LDC.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div class="ldc-container">
3-
<template v-if="userInfo.username">
3+
<template v-if="userInfo">
44
<div class="ldc-box">
55
<div class="ldc-header">
66
<div class="ldc-title">账户信息</div>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "linuxdo-scripts",
33
"description": "manifest.json description",
44
"private": true,
5-
"version": "1.5.22",
5+
"version": "1.5.23",
66
"type": "module",
77
"scripts": {
88
"dev": "wxt",

version-log.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.5.23
2+
3+
- fix(ldc): 修正账户信息显示条件判断
4+
15
## 1.5.22
26

37
- feat(popupviews): 增加 Leaderboard 点数显示并优化样式和缓存逻辑

0 commit comments

Comments
 (0)