From 6f81b3baa8062be1849787db993ef8a885d0d2a9 Mon Sep 17 00:00:00 2001 From: JG Date: Tue, 21 Jun 2022 14:46:38 +0100 Subject: [PATCH] fixed --- 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