Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ repos:
args: [--number]
language: python
additional_dependencies:
- mdformat-mkdocs==5.1.1
- mdformat-mkdocs==5.1.2

- repo: https://github.com/DavidAnson/markdownlint-cli2
rev: v0.20.0
Expand All @@ -73,7 +73,7 @@ repos:
- id: reuse-lint-file

- repo: https://github.com/crate-ci/typos
rev: v1.40.0
rev: v1.42.0
hooks:
- id: typos

Expand Down Expand Up @@ -106,12 +106,12 @@ repos:

# zizmor detects security vulnerabilities in GitHub Actions workflows.
- repo: https://github.com/woodruffw/zizmor-pre-commit
rev: v1.18.0
rev: v1.20.0
hooks:
- id: zizmor

- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.35.0
rev: 0.36.0
hooks:
- id: check-github-workflows
args: ["--verbose"]
Expand All @@ -124,7 +124,7 @@ repos:
# `actionlint` hook, for verifying correct syntax in GitHub Actions workflows.
# Some additional configuration for `actionlint` can be found in `.github/actionlint.yaml`.
- repo: https://github.com/rhysd/actionlint
rev: v1.7.9
rev: v1.7.10
hooks:
- id: actionlint
language: golang
Expand Down
2 changes: 1 addition & 1 deletion opal/core/forms/layouts.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def __init__(self, *fields: Any) -> None:

class RadioSelect(Field):
"""
Custom radio select widget to be used for radio buttion tooltip, help_text, errors.
Custom radio select widget to be used for radio button tooltip, help_text, errors.

Triggers validation via `up-validate` on selection to let the form react to the selection.
Supports option tooltip on the radio select label.
Expand Down