Skip to content

Commit

Permalink
Merge pull request #130 from birotaio/bugfix/remove-console-log
Browse files Browse the repository at this point in the history
fix: remove console.log
  • Loading branch information
qnp authored Oct 4, 2024
2 parents 45e51aa + 915a58d commit de4c9c2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.25.1 (October 3, 2024)

### Fixes

- [Chore] Remove missed `console.log`

## 0.25.0 (September 24, 2024)

### Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fifteen/design-system-vue",
"version": "0.25.0",
"version": "0.25.1",
"description": "Vue 3 (Composition API + Typescript) implementation of the Fifteen Design System",
"repository": {
"type": "git",
Expand Down
1 change: 0 additions & 1 deletion src/components/FTextContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,6 @@ const emptyParagraphRegex = new RegExp(
`<p>(${everySpaces.join('|')})*<\/p>`,
'gi'
);
console.log('emptyParagraphRegex', emptyParagraphRegex);
const textContent = computed(() =>
avoidOrphanPunct(xss(props.source, xssOptions))
Expand Down

0 comments on commit de4c9c2

Please sign in to comment.