Skip to content
Snippets Groups Projects
Commit ca8cd232 authored by OZGCloud's avatar OZGCloud
Browse files

add scope to table header

parent c1a47e0f
Branches
Tags
No related merge requests found
<table aria-label="Antragstellerdaten"> <table aria-label="Antragstellerdaten">
<tr> <tr>
<th>Formularfeld</th> <th scope="col">Formularfeld</th>
<th>Formulareingabe</th> <th scope="col">Formulareingabe</th>
</tr> </tr>
<tr> <tr>
<td class="key">Anrede</td> <td class="key">Anrede</td>
......
<table aria-label="Eingangsdaten"> <table aria-label="Eingangsdaten">
<tr> <tr>
<th>Formularfeld</th> <th scope="col">Formularfeld</th>
<th>Formulareingabe</th> <th scope="col">Formulareingabe</th>
</tr> </tr>
<tr> <tr>
<td class="key">Erstellungsdatum</td> <td class="key">Erstellungsdatum</td>
......
<table aria-label="Formulardaten"> <table aria-label="Formulardaten">
<tr> <tr>
<th>Formularfeld</th> <th scope="col">Formularfeld</th>
<th>Formulareingabe</th> <th scope="col">Formulareingabe</th>
</tr> </tr>
<tr *ngFor="let row of formData | keyvalue: objectToBottom"> <tr *ngFor="let row of formData | keyvalue: objectToBottom">
......
<div *ngIf="wiedervorlagenStateResource$ | async as wiedervorlagenStateResource" class="foreground"> <div *ngIf="wiedervorlagenStateResource$ | async as wiedervorlagenStateResource" class="foreground">
<table aria-label="Wiedervorlagenliste"> <table aria-label="Wiedervorlagenliste">
<tr> <tr>
<th>Wiedervorlage</th> <th scope="col">Wiedervorlage</th>
<th>&nbsp;</th> <th scope="col"><span>Status</span></th>
<th>Frist</th> <th scope="col">Frist</th>
</tr> </tr>
<tr *ngFor="let wiedervorlageResource of wiedervorlagenStateResource.resource"> <tr *ngFor="let wiedervorlageResource of wiedervorlagenStateResource.resource">
<td class="name" data-test-class="betreff">{{ wiedervorlageResource.betreff }}</td> <td class="name" data-test-class="betreff">{{ wiedervorlageResource.betreff }}</td>
......
...@@ -44,6 +44,9 @@ th { ...@@ -44,6 +44,9 @@ th {
th { th {
text-align: left; text-align: left;
span {
display: none;
}
} }
table { table {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment