Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Jan 28, 2025
1 parent 2b35ab9 commit 02b6b63
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion docs/components/settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ import { data } from "/settings.data.ts";
import Setting from "/components/setting.vue";
const { child } = defineProps(["child", "level"]);
const settings = child ? (data.find((f) => f.key === child)?.settings ?? []) : data;
const settings = child
? (data.find((f) => f.key === child)?.settings ?? [])
: data;
</script>
<!-- <ul>-->
Expand Down
2 changes: 1 addition & 1 deletion docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ They support aliases, which means you can have an `.nvmrc` file with `lts/hydrog
in mise and nvm. Here are some of the supported idiomatic version files:

| Plugin | Idiomatic Files |
|-----------|----------------------------------------------------|
| --------- | -------------------------------------------------- |
| crystal | `.crystal-version` |
| elixir | `.exenv-version` |
| go | `.go-version`, `go.mod` |
Expand Down

0 comments on commit 02b6b63

Please sign in to comment.