Browse Source

Bugfix: datepicker needed to pass _bb down to the textfiel

pull/183/head
Conor_Mack 6 years ago
parent
commit
336925ea56
  1. 1
      packages/materialdesign-components/src/DatePicker/DatePicker.svelte
  2. 2
      packages/materialdesign-components/src/Textfield/Textfield.svelte

1
packages/materialdesign-components/src/DatePicker/DatePicker.svelte

@ -98,6 +98,7 @@
<div class="mdc-menu-surface--anchor">
<Textfield
{_bb}
{label}
onChange={dateFieldChange}
value={selectedDate}

2
packages/materialdesign-components/src/Textfield/Textfield.svelte

@ -129,6 +129,7 @@ TODO:Needs error handling - this will depend on how Budibase handles errors
{#if renderLeadingIcon}
{#if useIconButton}
<IconButton
{_bb}
{icon}
context="mdc-text-field__icon mdc-text-field__icon--leading"
onClick={iconButtonClick} />
@ -152,6 +153,7 @@ TODO:Needs error handling - this will depend on how Budibase handles errors
{#if renderTrailingIcon}
{#if useIconButton}
<IconButton
{_bb}
{icon}
context="mdc-text-field__icon mdc-text-field__icon--trailing"
onClick={iconButtonClick} />

Loading…
Cancel
Save