Skip to content

Commit

Permalink
DANG-1828/fix overflowing tables (#383)
Browse files Browse the repository at this point in the history
* fix overflowing tables

* version and changelog
  • Loading branch information
shannamurry authored Jan 5, 2023
1 parent b0ffc6b commit cb804be
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## v2.0.0-beta.22

### Bug Fixes

Prevents `Table` component from having x-overflow

## v2.0.0-beta.21

### Features
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lob/ui-components",
"version": "2.0.0-beta.21",
"version": "2.0.0-beta.22",
"engines": {
"node": ">=14.18.2",
"npm": ">=8.3.0"
Expand Down
2 changes: 1 addition & 1 deletion src/components/Table/Table.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<table :class="spaceClassName">
<table :class="['spaceClassName min-w-min']">
<slot />
</table>
</template>
Expand Down

0 comments on commit cb804be

Please sign in to comment.