Skip to content

Commit

Permalink
fix(kit): collision with input-date-multi (#7554)
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode authored May 27, 2024
1 parent 70df178 commit 911ae28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion projects/kit/components/input-date/input-date.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ import {Observable} from 'rxjs';
import {map} from 'rxjs/operators';

@Component({
selector: 'tui-input-date',
selector: 'tui-input-date:not([multiple])',
templateUrl: './input-date.template.html',
styleUrls: ['./input-date.style.less'],
changeDetection: ChangeDetectionStrategy.OnPush,
Expand Down
2 changes: 1 addition & 1 deletion projects/kit/components/input-date/input-date.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {AbstractTuiTextfieldHost, tuiAsTextfieldHost} from '@taiga-ui/core';
import {TuiInputDateComponent} from './input-date.component';

@Directive({
selector: 'tui-input-date',
selector: 'tui-input-date:not([multiple])',
providers: [tuiAsTextfieldHost(TuiInputDateDirective)],
})
export class TuiInputDateDirective extends AbstractTuiTextfieldHost<TuiInputDateComponent> {
Expand Down

0 comments on commit 911ae28

Please sign in to comment.