Skip to content

Commit

Permalink
style: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kirklin committed Mar 29, 2024
1 parent 1008119 commit c46ee40
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -243,4 +243,10 @@ docker run --rm -it -p 8080:80 celeris-web:latest

## Star History

[![Star History Chart](https://api.star-history.com/svg?repos=kirklin/celeris-web&type=Date)](https://star-history.com/#kirklin/celeris-web&Date)
<a href="https://star-history.com/#kirklin/celeris-web&Date">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=kirklin/celeris-web&type=Date&theme=dark" />
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=kirklin/celeris-web&type=Date" />
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=kirklin/celeris-web&type=Date" />
</picture>
</a>
8 changes: 7 additions & 1 deletion README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -245,4 +245,10 @@ docker run --rm -it -p 8080:80 celeris-web:latest

## Star History

[![Star History Chart](https://api.star-history.com/svg?repos=kirklin/celeris-web&type=Date)](https://star-history.com/#kirklin/celeris-web&Date)
<a href="https://star-history.com/#kirklin/celeris-web&Date">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=kirklin/celeris-web&type=Date&theme=dark" />
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=kirklin/celeris-web&type=Date" />
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=kirklin/celeris-web&type=Date" />
</picture>
</a>
2 changes: 1 addition & 1 deletion apps/admin/src/layouts/sidebar/components/Menu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ watch(
immediate: true,
},
);
const collapsedWidth = computed<number>(() => collapsed ? 64 : 300);
const collapsedWidth = computed<number>(() => collapsed.value ? 64 : 300);
</script>

<template>
Expand Down

0 comments on commit c46ee40

Please sign in to comment.