Prevent setting color attribute on loading bar

Fire accessibility/HTML guidelines warnings/errors
This commit is contained in:
Chocobozzz 2023-10-06 11:29:01 +02:00
parent 04bc2e2dbe
commit 8d20c8f391
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@
</div> </div>
</div> </div>
<ngx-loading-bar [includeSpinner]="false" color="var(--mainColor)"></ngx-loading-bar> <ngx-loading-bar [includeSpinner]="false" [color]="'var(--mainColor)'"></ngx-loading-bar>
<my-confirm></my-confirm> <my-confirm></my-confirm>

View File

@ -24,7 +24,7 @@ describe('Test video update scheduler', function () {
let video2UUID: string let video2UUID: string
before(async function () { before(async function () {
this.timeout(30000) this.timeout(120000)
// Run servers // Run servers
servers = await createMultipleServers(2) servers = await createMultipleServers(2)