Skip to content

Commit

Permalink
Merge pull request #14 from Savage-Aim/default-theme
Browse files Browse the repository at this point in the history
Default theme
  • Loading branch information
freyamade authored Feb 28, 2022
2 parents 818a81f + ad01d77 commit b9fb76d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion backend/api/serializers/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def get_theme(self, obj) -> str:
try:
return obj.settings.theme
except (AttributeError, Settings.DoesNotExist):
return 'beta'
return 'traffic'

def get_username(self, obj) -> str:
"""
Expand Down
4 changes: 4 additions & 0 deletions frontend/src/components/modals/changelog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
<h2 class="has-text-primary subtitle">{{ version }}</h2>
<div class="divider"><i class="material-icons icon">expand_more</i> Minor Changes <i class="material-icons icon">expand_more</i></div>
<p>Fixed issue where Discord usernames were not being displayed properly.</p>
<p>
Set the default theme to Traffic Lights as feedback indicated it was much more easily understood for new users than gradient colours.
<span class="has-text-warning">If you've never changed your settings, your colours will now be this style. Please change your user settings to change off this!</span>
</p>
</div>
</div>
</template>
Expand Down

0 comments on commit b9fb76d

Please sign in to comment.