Skip to content

Commit e766143

Browse files
Merge pull request #154 from thomasmckay/pfSelect
pfSelect - fixed blank choice in select
2 parents 6a2e71c + 3da0c07 commit e766143

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

dist/angular-patternfly.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3254,6 +3254,7 @@ angular.module( 'patternfly.notification' ).directive('pfNotificationList', func
32543254
$scope.drinks = ['tea', 'coffee', 'water'];
32553255
$scope.pets = ['Dog', 'Cat', 'Chicken'];
32563256
$scope.pet = $scope.pets[0];
3257+
$scope.fruit = 'orange';
32573258
});
32583259
</file>
32593260

src/select/select.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
$scope.drinks = ['tea', 'coffee', 'water'];
5858
$scope.pets = ['Dog', 'Cat', 'Chicken'];
5959
$scope.pet = $scope.pets[0];
60+
$scope.fruit = 'orange';
6061
});
6162
</file>
6263

0 commit comments

Comments
 (0)