Skip to content

Commit

Permalink
v0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
abilicz committed Aug 4, 2023
1 parent 84e2220 commit fef35d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@spartez/vue-atlaskit",
"version": "0.3.4",
"version": "0.3.5",
"description": "Unofficial Vue UI library, built according to the Atlassian Design Guidelines.",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Tabs/TabContainer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
render(h, { slots, props, listeners }) {
const { tabs = [], content = [] } = slots();
return [
h('nav', tabs.map((vnode) => {
h('nav', tabs.filter(vnode => vnode.data).map((vnode) => {
const { componentOptions, data: { attrs, staticClass } } = vnode;
return h(Tab, {
props: { ...componentOptions.propsData, selected: props.value },
Expand Down

0 comments on commit fef35d4

Please sign in to comment.