From: Tom Hughes Date: Fri, 8 Sep 2023 17:09:00 +0000 (+0100) Subject: Merge remote-tracking branch 'upstream/pull/4241' X-Git-Tag: live~1552 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/0e21afc56593eb9fce14d8cfe0984494e758c150?hp=9682fe6431e6e7360b6dbaaa0b0c75c826a649e8 Merge remote-tracking branch 'upstream/pull/4241' --- diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2b9dae62e..3ee6129e1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -60,7 +60,7 @@ jobs: - name: Run tests run: bundle exec rails test:all - name: Report completion to Coveralls - uses: coverallsapp/github-action@v2.2.2 + uses: coverallsapp/github-action@v2.2.3 with: github-token: ${{ secrets.github_token }} flag-name: ubuntu-${{ matrix.ubuntu }}-ruby-${{ matrix.ruby }} @@ -72,7 +72,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Report completion to Coveralls - uses: coverallsapp/github-action@v2.2.2 + uses: coverallsapp/github-action@v2.2.3 with: github-token: ${{ secrets.github_token }} parallel-finished: true diff --git a/app/views/diary_entries/_form.html.erb b/app/views/diary_entries/_form.html.erb index bfb1c1823..0b38e3ea6 100644 --- a/app/views/diary_entries/_form.html.erb +++ b/app/views/diary_entries/_form.html.erb @@ -8,8 +8,8 @@ <%= tag.div "", :id => "map", :class => "border border-grey rounded mb-3", :data => { :lat => @lat, :lon => @lon, :zoom => @zoom } %>
- <%= f.text_field :latitude, :wrapper_class => "col-sm-4", :id => "latitude" %> - <%= f.text_field :longitude, :wrapper_class => "col-sm-4", :id => "longitude" %> + <%= f.text_field :latitude, :wrapper_class => "col-sm-4 d-flex flex-column", :class => "mt-auto", :id => "latitude" %> + <%= f.text_field :longitude, :wrapper_class => "col-sm-4 d-flex flex-column", :class => "mt-auto", :id => "longitude" %>
diff --git a/app/views/profiles/edit.html.erb b/app/views/profiles/edit.html.erb index bf53832c8..b207e72e2 100644 --- a/app/views/profiles/edit.html.erb +++ b/app/views/profiles/edit.html.erb @@ -44,8 +44,8 @@ <%= t ".home location" -%>

<%= t ".no home location" %>

- <%= f.text_field :home_lat, :wrapper_class => "col-sm-4", :id => "home_lat" %> - <%= f.text_field :home_lon, :wrapper_class => "col-sm-4", :id => "home_lon" %> + <%= f.text_field :home_lat, :wrapper_class => "col-sm-4 d-flex flex-column", :class => "mt-auto", :id => "home_lat" %> + <%= f.text_field :home_lon, :wrapper_class => "col-sm-4 d-flex flex-column", :class => "mt-auto", :id => "home_lon" %>