From 4083af3ced3aa2fef0677971c38109d2978071e8 Mon Sep 17 00:00:00 2001 From: John Cowen Date: Thu, 8 Oct 2020 20:32:27 +0100 Subject: [PATCH] ui: Workaround FF and/or ember problem, trying to set a value="" (#8884) --- .../components/consul-intention-form/fieldsets/layout.scss | 2 +- ui-v2/app/components/radio-card/index.hbs | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ui-v2/app/components/consul-intention-form/fieldsets/layout.scss b/ui-v2/app/components/consul-intention-form/fieldsets/layout.scss index 70f18cfdf..fa9353f06 100644 --- a/ui-v2/app/components/consul-intention-form/fieldsets/layout.scss +++ b/ui-v2/app/components/consul-intention-form/fieldsets/layout.scss @@ -18,7 +18,7 @@ @extend %with-deny-color-icon, %as-pseudo; } .permissions > button { - @extend %anchor; + @extend %anchor, %p2; float: right; } } diff --git a/ui-v2/app/components/radio-card/index.hbs b/ui-v2/app/components/radio-card/index.hbs index 4a5348aac..0cab5cca0 100644 --- a/ui-v2/app/components/radio-card/index.hbs +++ b/ui-v2/app/components/radio-card/index.hbs @@ -3,7 +3,12 @@ class="radio-card{{if checked ' checked'}}" >
- + {{! workaround FF/Ember problem where you cannnot set a value to be value="" (empty)}} + {{#if (gt value.length 0) }} + + {{else}} + + {{/if}}
{{yield}}