From abf862e323e524cf496a34a17aa6afb6c8cf641e Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Fri, 23 Dec 2022 21:19:10 -0800 Subject: [PATCH] Change input class --- components/AxSelect/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/AxSelect/index.tsx b/components/AxSelect/index.tsx index d96198b9..19c89b61 100644 --- a/components/AxSelect/index.tsx +++ b/components/AxSelect/index.tsx @@ -311,7 +311,7 @@ const AXSelect = (props: Props) => { if (ax) { const rangeString = `${ax.minValue}~${ax.maxValue}${ax.suffix || ''}` - element.className = 'Input Contained Visible' + element.className = 'Input Bound Visible' element.disabled = false element.placeholder = rangeString element.min = `${ax.minValue}`