Skip to content

Commit

Permalink
clean up logs
Browse files Browse the repository at this point in the history
  • Loading branch information
javierluraschi committed Mar 6, 2024
1 parent 06e72ad commit 4222973
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setuptools.setup(
name="streamfy",
version="0.3.4",
version="0.3.5",
author="Javier Luraschi",
author_email="[email protected]",
description="Modern frontend web components based on Buefy for Streamlit.",
Expand Down
5 changes: 0 additions & 5 deletions streamfy/frontend/src/Streamfy.vue
Original file line number Diff line number Diff line change
Expand Up @@ -281,17 +281,12 @@ export default {
if (this.args.component != 'taginput') return;
if (!this.args.data) return;
console.log('x1')
const result = this.result;
console.log('x2')
this.filtered = this.args.data
.filter(e => {
console.log('x3 ' + e)
return !result.includes(e)
})
.filter((datum) => {
console.log('x4 ' + datum + ' ' + text)
return datum
.toString()
.toLowerCase()
Expand Down

0 comments on commit 4222973

Please sign in to comment.