Skip to content

Commit

Permalink
Merge pull request #2695 from bitzesty/production
Browse files Browse the repository at this point in the history
Production/main sync
  • Loading branch information
dreamfall authored Nov 30, 2023
2 parents 5794360 + a0002c3 commit 212c8cb
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7.7
ruby-version: 3.2.2
- uses: actions/setup-node@v2-beta
with:
node-version: '16'
Expand Down
2 changes: 1 addition & 1 deletion app/assets/stylesheets/admin/base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2220,4 +2220,4 @@ label.govuk-label.govuk-checkboxes__label.boolean.optional.govuk-label {

.alert button.close {
font-size: pxToRem(18);
}
}
10 changes: 10 additions & 0 deletions app/assets/stylesheets/admin/forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,13 @@ input.form-control, select.form-control,
.input-group-addon {
height: 2.42em !important;
}

input.form-control, select.form-control,
.input-group-addon, textarea,
.btn-default {
border-color: #5C5C5C !important;
}

.input-group-addon {
height: 2.42em !important;
}
1 change: 0 additions & 1 deletion app/javascript/controllers/appraisal_form_controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ export default class extends ApplicationController {
wrapper.classList.remove('form-edit');

if (Array.from(wrapper.querySelectorAll('.form-value p[data-for]')).length > 0) {
console.log(1);
Array.from(wrapper.querySelectorAll('.form-value p[data-for]')).forEach((el) => {
let identifier = el.dataset.for;
let element = document.querySelector(`#${identifier}`);
Expand Down
2 changes: 1 addition & 1 deletion app/models/user.rb
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def new_member?
end

def timeout_in
(ENV["SESSION_TIMEOUT"] || 20).to_f.hours
ENV.fetch("SESSION_TIMEOUT", 24).to_i.hours
end

def check_email_on_bounces!
Expand Down

0 comments on commit 212c8cb

Please sign in to comment.