summaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'src/roster-editor/src/View/GlyphSelection.elm')
-rw-r--r-- | src/roster-editor/src/View/GlyphSelection.elm | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/src/roster-editor/src/View/GlyphSelection.elm b/src/roster-editor/src/View/GlyphSelection.elm index 22a5ff6..6158cac 100644 --- a/src/roster-editor/src/View/GlyphSelection.elm +++ b/src/roster-editor/src/View/GlyphSelection.elm @@ -13,6 +13,8 @@ import Struct.Glyph import Struct.Omnimods import Struct.Model +import View.Omnimods + -------------------------------------------------------------------------------- -- LOCAL ----------------------------------------------------------------------- -------------------------------------------------------------------------------- @@ -46,16 +48,7 @@ get_glyph_html glyph = ] [ (Html.text (Struct.Glyph.get_name glyph)), - (Html.div - [ - ] - (List.map - (get_mod_html) - (Struct.Omnimods.get_all_mods - (Struct.Glyph.get_omnimods glyph) - ) - ) - ) + (View.Omnimods.get_html 1.0 (Struct.Glyph.get_omnimods glyph)) ] ) |