Skip to content

Commit

Permalink
fix: add missing regex for desciption
Browse files Browse the repository at this point in the history
  • Loading branch information
Przemyslaw Kalitowski committed Aug 6, 2024
1 parent 91d840c commit e60d5f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
controller_credential_types:
{% for credential_type in current_credential_types_asset_value %}
- name: "{{ credential_type.name }}"
description: "{{ credential_type.description }}"
description: "{{ credential_type.description | regex_replace('([\\\"])', '\\\\1') }}"
kind: "{{ credential_type.kind }}"
inputs:
{{ credential_type.inputs | to_nice_yaml(indent=2) | indent(width=6, first=True) }}
Expand Down

0 comments on commit e60d5f7

Please sign in to comment.