docs: Update the aria-valuemax attr of the sample (#32261)

In order to be the same value as the one use here : https://stackblitz.com/edit/angular-kn5jdi?file=src%2Fapp%2Fprogress-bar.ts
PR Close #32261
This commit is contained in:
Emmanuel DEMEY 2019-08-22 11:09:44 +02:00 committed by atscott
parent e563d77128
commit 25f31f2a14
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ The following example shows how to make a simple progress bar accessible by usin
// Sets the minimum and maximum values for the progressbar role.
'aria-valuemin': '0',
'aria-valuemax': '0',
'aria-valuemax': '100',
// Binding that updates the current value of the progressbar.
'[attr.aria-valuenow]': 'value',