From 5c305c8728e44b8fb26ff33e0ed1b005132e0c5b Mon Sep 17 00:00:00 2001 From: Gregor Lasnibat Date: Fri, 19 Jan 2024 15:17:34 +0100 Subject: [PATCH] (fix) Well plate 12 option and 24 translation missing [SCI_10061] --- app/javascript/vue/results/result.vue | 3 ++- config/locales/en.yml | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/app/javascript/vue/results/result.vue b/app/javascript/vue/results/result.vue index b532e0db8..4635e17fd 100644 --- a/app/javascript/vue/results/result.vue +++ b/app/javascript/vue/results/result.vue @@ -171,7 +171,8 @@ export default { { text: I18n.t('protocols.steps.insert.well_plate_options.8_x_12'), emit: 'create:table', params: [[8, 12], true] }, { text: I18n.t('protocols.steps.insert.well_plate_options.6_x_8'), emit: 'create:table', params: [[6, 8], true] }, { text: I18n.t('protocols.steps.insert.well_plate_options.6_x_4'), emit: 'create:table', params: [[6, 4], true] }, - { text: I18n.t('protocols.steps.insert.well_plate_options.2_x_3'), emit: 'create:table', params: [[2, 3], true] } + { text: I18n.t('protocols.steps.insert.well_plate_options.3_x_4'), emit: 'create:table', params: [[3, 4], true] }, + { text: I18n.t('protocols.steps.insert.well_plate_options.2_x_3'), emit: 'create:table', params: [[2, 3], true] }, ], editingName: false, confirmingDelete: false, diff --git a/config/locales/en.yml b/config/locales/en.yml index dd22d65ae..81e0888bc 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -3319,6 +3319,7 @@ en: 16_x_24: '384 (16 x 24)' 8_x_12: '96 (8 x 12)' 6_x_8: '48 (6 x 8 )' + 6_x_4: '24 (6 x 4)' 4_x_6: '24 (4 x 6)' 3_x_4: '12 (3 x 4)' 2_x_3: '6 (2 x 3)'