Skip to content

Commit

Permalink
Merge branch 'main' into bug/fix-404-page
Browse files Browse the repository at this point in the history
  • Loading branch information
huong-li-nguyen authored Nov 13, 2024
2 parents 0712ce2 + 6419b80 commit 731c83a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ repos:
args: [--autofix]

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.9
rev: v0.7.2
hooks:
- id: ruff
args: [--fix]
Expand Down Expand Up @@ -84,7 +84,7 @@ repos:
args: ["--fix"]

- repo: https://github.com/errata-ai/vale
rev: v3.7.1
rev: v3.8.0
hooks:
- id: vale
args: [--config=.vale/.vale.ini]
Expand Down
4 changes: 3 additions & 1 deletion vizro-core/examples/visual-vocabulary/custom_components.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ class Markdown(vm.VizroBaseModel):

def build(self):
"""Returns a markdown component with an optional classname."""
return dcc.Markdown(id=self.id, children=self.text, dangerously_allow_html=False, className=self.classname)
return dcc.Markdown(
id=self.id, children=self.text, dangerously_allow_html=False, className=self.classname, link_target="_blank"
)


class FlexContainer(vm.Container):
Expand Down

0 comments on commit 731c83a

Please sign in to comment.