diff --git a/app/views/repositories/_form.html.erb b/app/views/repositories/_form.html.erb index fc566de..b0572d9 100644 --- a/app/views/repositories/_form.html.erb +++ b/app/views/repositories/_form.html.erb @@ -78,7 +78,7 @@
- <%= f.label :configuration, 'Configuration', class: 'control-label' %> + <%= f.label :kalibro_configuration_id, 'Configuration', class: 'control-label' %> <% configuration_list = KalibroClient::Entities::Configurations::KalibroConfiguration.all.map { |conf| [conf.name, conf.id] } %> <%= f.select( :kalibro_configuration_id, configuration_list, class: 'tooltip-control' ) %>
diff --git a/app/views/repositories/show.html.erb b/app/views/repositories/show.html.erb index a4a1c9f..624edff 100644 --- a/app/views/repositories/show.html.erb +++ b/app/views/repositories/show.html.erb @@ -36,9 +36,12 @@ <%= form_tag(project_repository_state_with_date_path(@repository.project_id, @repository.id), method: "post", remote: true) do %>

- Day: <%= select_tag(:day, options_for_select(day_options), :style => "width:55px; margin-top:5px") %> - Month: <%= select_tag(:month, options_for_select(month_options), :style => "width:55px; margin-top:5px") %> - Year: <%= select_tag(:year, options_for_select(year_options), :style => "width:70px; margin-top:5px") %> + <%= label_tag :day, t("day") %>: + <%= select_tag(:day, options_for_select(day_options), :style => "width:55px; margin-top:5px") %> + <%= label_tag :month, t("month") %>: + <%= select_tag(:month, options_for_select(month_options), :style => "width:55px; margin-top:5px") %> + <%= label_tag :year, t("year") %>: + <%= select_tag(:year, options_for_select(year_options), :style => "width:70px; margin-top:5px") %> <%= submit_tag("Search", class: 'btn btn-info', style: 'margin-bottom:5px', onClick: "Module.Repository.set_loader('#{image_tag 'loader.gif'} Loading data. Please, wait.')") %>

<% end %> diff --git a/features/users/user_update.feature b/features/users/user_update.feature index bbaa0a8..862a8d0 100644 --- a/features/users/user_update.feature +++ b/features/users/user_update.feature @@ -12,5 +12,5 @@ Feature: User update And I fill the Name field with "Rafael Manzo" And I fill the Current password field with "password" And I press the Update button - Then I should see "Your account has been updated successfully" - And my name should have changed to Rafael Manzo \ No newline at end of file + Then I should see "You updated your account successfully" + And my name should have changed to Rafael Manzo -- libgit2 0.21.2