From 4de8885e7b483f3b82cb560c27be6ada6e1ef1b2 Mon Sep 17 00:00:00 2001 From: J G <7750475+moarpheus@users.noreply.github.com> Date: Wed, 22 Jun 2022 10:26:35 +0100 Subject: [PATCH] fixed (#688) --- app/models/location.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/models/location.rb b/app/models/location.rb index 76e3e577e..d3cc23f82 100644 --- a/app/models/location.rb +++ b/app/models/location.rb @@ -2,8 +2,8 @@ class Location < ApplicationRecord belongs_to :scheme WHEELCHAIR_ADAPTATIONS = { - no: 0, - yes: 1, + No: 0, + Yes: 1, }.freeze enum wheelchair_adaptation: WHEELCHAIR_ADAPTATIONS