We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fe62f9 commit e3a2f30Copy full SHA for e3a2f30
src/lib/core/data-table/data-table.ts
@@ -169,13 +169,6 @@ export class CdkTable<T> implements CollectionViewer {
169
elementRef: ElementRef,
170
renderer: Renderer2,
171
@Attribute('role') role: string) {
172
- // Show the stability warning of the data-table only if it doesn't run inside of jasmine.
173
- // This is just temporary and should reduce warnings when running the tests.
174
- if (!(typeof window !== 'undefined' && window['jasmine'])) {
175
- console.warn('The data table is still in active development ' +
176
- 'and should be considered unstable.');
177
- }
178
-
179
if (!role) {
180
renderer.setAttribute(elementRef.nativeElement, 'role', 'grid');
181
}
0 commit comments