githubpartners / microsoft-learn

The planning and tracking of GitHub modules on MS Learn
7 stars 6 forks source link

MS Learn Module Update Request: About GitHub Copilot Enterprise #155

Open mjbear opened 2 months ago

mjbear commented 2 months ago

Which of the MS Learn modules from the dropdown are you submitting an update request?

None

Additional information

Information about the requested update

module: About GitHub Copilot Enterprise https://learn.microsoft.com/en-us/training/modules/introduction-to-github-copilot-enterprise/2-about-github-copilot-enterprise

section: GitHub Copilot Enterprise vs. GitHub Copilot for Business vs. GitHub Copilot for Individual

The GitHub Copilot licensing comparison table headers don't line up with the cells they represent which makes the table confusing. Setting the first header cell to "column span" two columns might be a viable fix.

<th colspan="2">GitHub Copilot Enterprise</th>

Note: When I make this modification from my browser's Developer Tools, I do notice the horizontal cell borders render oddly on the right side, but that is cosmetic as opposed to the current confusing header alignment.

Update: The note about the right side horizontal rendering is resolved by removing the emtpy <th></th> tags in the header row. (Below I've commented them so that it is clear where the empty "th" tags are.)

<thead>
<tr>
<th colspan="2">GitHub Copilot Enterprise</th>
<th>GitHub Copilot for Business</th>
<th>GitHub Copilot for Individual</th>
<!--<th></th>-->

</tr>
</thead>