diff options
| author | Michael <[email protected]> | 2017-05-09 13:05:49 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-05-09 13:05:49 -0400 |
| commit | 4eb45b18aa572b3f68f732cccf1e5fd19ce31030 (patch) | |
| tree | 66c65607cfbddc33087bce001d28783950b25783 /Project-Unite | |
| parent | 28e035e581b29cb118060ba6bce3d3a29b2ed22a (diff) | |
| download | project-unite-4eb45b18aa572b3f68f732cccf1e5fd19ce31030.tar.gz project-unite-4eb45b18aa572b3f68f732cccf1e5fd19ce31030.tar.bz2 project-unite-4eb45b18aa572b3f68f732cccf1e5fd19ce31030.zip | |
fix datareading of categories
Diffstat (limited to 'Project-Unite')
| -rw-r--r-- | Project-Unite/Views/Bugs/Index.cshtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Project-Unite/Views/Bugs/Index.cshtml b/Project-Unite/Views/Bugs/Index.cshtml index f5fd394..ba5e39b 100644 --- a/Project-Unite/Views/Bugs/Index.cshtml +++ b/Project-Unite/Views/Bugs/Index.cshtml @@ -16,7 +16,7 @@ <h4>Bug types</h4> <ul id="tabs" data-tabs="tabs" class="nav nav-stacked nav-pills"> - @foreach(var cat in Model) + @foreach(var cat in Model.ToArray()) { string c = ""; if(cat == Model.First()) |
