Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed Oct 17, 2024
1 parent d2b03ed commit 60929d7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

## Version History

### v3.56.0

- :rocket: Add ability to hide advanced

### v3.55.3

- :bug: Dynamic loading causes vite to load all in production mode
Expand Down
6 changes: 5 additions & 1 deletion components/Alert.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<div><span v-text='err.message' /></div>
</div>

<template v-if='err.body || err.stack'>
<template v-if='advanced && (err.body || err.stack)'>
<div class='py-2 px-3'>
<div
class='subheader d-flex align-items-center cursor-pointer'
Expand Down Expand Up @@ -83,6 +83,10 @@ export default {
type: Boolean,
default: false
},
advanced: {
type: Boolean,
default: true
},
},
data: function() {
return {
Expand Down

0 comments on commit 60929d7

Please sign in to comment.