diff --git a/bot/src/bot_graphql/queries/level_query.py b/bot/src/bot_graphql/queries/level_query.py index d0762f95..d4a539b7 100644 --- a/bot/src/bot_graphql/queries/level_query.py +++ b/bot/src/bot_graphql/queries/level_query.py @@ -9,10 +9,7 @@ class LevelQuery(DataQueryWithHistoryABC): DataQueryWithHistoryABC.__init__(self, "Level", "LevelsHistory", LevelHistory, db) self.set_field("id", lambda x, *_: x.id) - self.set_field( - "iconURL", - lambda x, *_: "https://cdn.discordapp.com/emojis/1170348708894875659.webp?size=32&quality=lossless", - ) + self.set_field("iconURL", lambda x, *_: x.icon_url) self.set_field("name", lambda x, *_: x.name) self.set_field("color", lambda x, *_: x.color) self.set_field("minXp", lambda x, *_: x.min_xp) diff --git a/web/src/app/modules/view/server/levels/components/levels/levels.component.html b/web/src/app/modules/view/server/levels/components/levels/levels.component.html index 3b9168cb..2263c5f1 100644 --- a/web/src/app/modules/view/server/levels/components/levels/levels.component.html +++ b/web/src/app/modules/view/server/levels/components/levels/levels.component.html @@ -45,10 +45,9 @@ -