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:
parent
e563d77128
commit
25f31f2a14
|
@ -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',
|
||||
|
|
Loading…
Reference in New Issue