Skip to content

Commit

Permalink
Fixes #34253 - Tags input is expected as a string
Browse files Browse the repository at this point in the history
Fixes the issue when provided tags are stored in an array that is saved as a string.
  • Loading branch information
obol89 authored Jan 12, 2022
1 parent e9e7c4e commit 21106bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/foreman_ansible/ansible_provider.rb
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def provider_inputs_doc
:children => [
{
:name => :tags,
:type => Array,
:type => String,
:opts => { :required => false, :desc => N_('A comma separated list of tags to use for Ansible run') }
},
{
Expand Down

0 comments on commit 21106bd

Please sign in to comment.