File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
dxc-ngx-cdk-site/src/app/components/examples/select/select-multiple Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import { Component } from '@angular/core';
7
7
} )
8
8
export class SelectMultipleComponent {
9
9
10
- multipleSelected = '' ;
10
+ multipleSelected = [ '' ] ;
11
11
optionsWithoutIcon = [
12
12
{
13
13
value : "1" ,
@@ -26,7 +26,7 @@ export class SelectMultipleComponent {
26
26
constructor ( ) { }
27
27
28
28
onChange ( event ) {
29
- console . log ( event ) ;
29
+ this . multipleSelected = event ;
30
30
}
31
31
32
32
}
Original file line number Diff line number Diff line change 16
16
"generate-lib-win" : " npm run build-lib && npm run post-build-lib-win && npm run package" ,
17
17
"generate-lib-prod-win" : " npm run build-lib-prod && npm run post-build-lib-win && npm run package" ,
18
18
"test" : " jest --config ./jest.lib.config.js" ,
19
- "build-lib:watch" : " ng build --watch"
19
+ "build-lib:watch" : " ng build dxc-ngx-cdk --watch"
20
20
},
21
21
"author" : {
22
22
"name" : " DXC Technology" ,
You can’t perform that action at this time.
0 commit comments