From c34aef893963e37a6d41bd7cb50e9b87b9b560a7 Mon Sep 17 00:00:00 2001 From: Mark Moffat Date: Thu, 2 Jan 2020 15:54:57 +1030 Subject: [PATCH] Fix display of options --- views/order.hbs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/views/order.hbs b/views/order.hbs index 9338e9f..0f8c0de 100644 --- a/views/order.hbs +++ b/views/order.hbs @@ -53,12 +53,12 @@   >   {{ @root.__ "Options" }}: ( - {{#each this.options}} + {{#each this.options}} {{#if @last}} - {{@key}}: {{this}} - {{else}} - {{@key}}: {{this}} / - {{/if}} + {{#upperFirst this.name}}{{/upperFirst}}: {{this.value}} + {{else}} + {{#upperFirst this.name}}{{/upperFirst}}: {{this.value}} / + {{/if}} {{/each}} ) {{/if}}