1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00

Made Paste API Help show the aliase name for the format instead of the readable name.

This commit is contained in:
Uncled1023 2016-11-17 11:52:22 -08:00
parent 9ba0bbbee3
commit e39cc27a90

View File

@ -69,7 +69,7 @@
<select name="format" class="selectpicker">
@foreach (Highlighter.Lexer format in Highlighter.Lexers.OrderBy(l => l.Name))
{
<option value="@format.Aliases.FirstOrDefault()">@format.Name</option>
<option value="@format.Aliases.FirstOrDefault()">@format.Aliases.FirstOrDefault()</option>
}
</select>
</td>