Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
bluwy committed Sep 6, 2022
1 parent b3a9b94 commit bdb609f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/astro/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 0.1.1 (2022-09-06)

- Fix `showSource` handling
- Fix unknown property access errors

## 0.1.0 (2022-09-02)

Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/plugins/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export function apiPlugin(options = {}) {
)
},
getDefaultShowSource() {
return options?.defaultShowSource ?? false
return options.defaultShowSource ?? false
},
getMainIframeAttrs(entryId, hash, source, isComponent) {
/** @type {import('../..').Attr[]} */
Expand Down
1 change: 1 addition & 0 deletions packages/jsx/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- Fix `showSource` handling
- Fix `defaultFramework` type
- Fix unknown property access errors

## 0.1.0 (2022-09-02)

Expand Down

0 comments on commit bdb609f

Please sign in to comment.