Skip to content

Commit 38cfae2

Browse files
ipweblabVidas P
authored andcommitted
Change tooltip text of ‘Receivers’ & ‘Workflows’ (#3, #4)
1 parent 957c64e commit 38cfae2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/views/agents/_form.html.erb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119

120120
<div class="form-group">
121121
<%= f.label :receivers %>
122-
<%= icon_tag('fa-question-circle', 'data-toggle' => 'tooltip', 'title' => "Messages created by this agent will be sent to the selected agents.") %>
122+
<%= icon_tag('fa-question-circle', 'data-toggle' => 'tooltip', 'title' => "Select the agents to receive the messages generated by this agent.") %>
123123
<div class="message-related-region">
124124
<% messageTargets = (current_user.agents - [@agent]).find_all { |a| a.can_receive_messages? } %>
125125
<%= f.select(:receiver_ids,
@@ -133,7 +133,7 @@
133133
<% if current_user.workflow_count > 0 %>
134134
<div class="form-group">
135135
<%= f.label :workflows %>
136-
<%= icon_tag('fa-question-circle', 'data-toggle' => 'tooltip', 'title' => "Use workflows to group sets of agents, both for organization, and to make them easy to export and share.") %>
136+
<%= icon_tag('fa-question-circle', 'data-toggle' => 'tooltip', 'title' => "Select here the workflows this agent participates in.") %>
137137
<%= f.select(:workflow_ids,
138138
options_for_select(current_user.workflows.pluck(:name, :id), @agent.workflow_ids),
139139
{}, { :multiple => true, :size => 5, :class => 'select2-linked-tags form-control', data: {url_prefix: '/workflows'} }) %>

0 commit comments

Comments
 (0)