You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When viewed in browser, a fully loaded issue-table seem render an incomplete table.
It might be better to show "end" of the table instead.
Cause
This issue is due to the table being on a separate elevation compared to the paginator with class="mat-elevation-z8".
Potential Solutions
Right now, there are a few approaches that comes to mind when rendering the table.
Show the "end" of the table for all pages like for so:
Show the "end" of the table only for the last page
Make the paginator be on the same elevation as the table
Options 1 and 3 are trivial to implement.
Option 1 involves add <br/> right before paginator in issue-table
Option 3 involves wrapping both table and paginator in a div with class="mat-elevation-z8"
Option 2 might take a bit more work but should be relatively easy to implement like 1 and 3.
The text was updated successfully, but these errors were encountered:
Describe the bug
When viewed in browser, a fully loaded issue-table seem render an incomplete table.
It might be better to show "end" of the table instead.
Cause
This issue is due to the table being on a separate elevation compared to the paginator with
class="mat-elevation-z8"
.Potential Solutions
Right now, there are a few approaches that comes to mind when rendering the table.
Options 1 and 3 are trivial to implement.
Option 1 involves add
<br/>
right before paginator inissue-table
Option 3 involves wrapping both table and paginator in a div with
class="mat-elevation-z8"
Option 2 might take a bit more work but should be relatively easy to implement like 1 and 3.
The text was updated successfully, but these errors were encountered: