Skip to content

Commit

Permalink
fix(progress): indeterminate default value
Browse files Browse the repository at this point in the history
  • Loading branch information
farfromrefug committed Apr 7, 2021
1 parent f0c073e commit f46d725
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/progress/progress-common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export const busyProperty = new Property<ProgressBase, boolean>({
});
export const indeterminateProperty = new Property<ProgressBase, boolean>({
name: 'indeterminate',
defaultValue: false,
valueConverter: booleanConverter
});
busyProperty.register(ProgressBase);
Expand Down

0 comments on commit f46d725

Please sign in to comment.