Skip to content

Commit

Permalink
fix: vue warning issue in BackupListItem component (#4870)
Browse files Browse the repository at this point in the history
#### What type of PR is this?

/area console
/kind improvement
/milestone 2.11.x

#### What this PR does / why we need it:

修复代码错误导致的控制台警告。异常现象:备份列表页面,有多少备份文件就会有多少个警告日志。
![image](https://github.com/halo-dev/halo/assets/44720422/2dc64621-9731-4647-b23e-c3a5aa115c37)

#### Which issue(s) this PR fixes:

Fixes #4871

#### Special notes for your reviewer:

None

#### Does this PR introduce a user-facing change?

```release-note
修复备份页面中的浏览器控制台警告日志
```
  • Loading branch information
jiangqiang1996 committed Nov 17, 2023
1 parent 4216d95 commit 747cab3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const { t } = useI18n();
const props = withDefaults(
defineProps<{
backup: Backup;
showOperations: boolean;
showOperations?: boolean;
}>(),
{
showOperations: true,
Expand Down

0 comments on commit 747cab3

Please sign in to comment.