Sort rendered config context

This commit is contained in:
Jeremy Stretch 2018-06-28 14:10:20 -04:00
parent 65dd7a5938
commit 1edc73179a

View File

@ -703,7 +703,7 @@ class ConfigContextModel(models.Model):
for context in ConfigContext.objects.get_for_object(self): for context in ConfigContext.objects.get_for_object(self):
data.update(context.data) data.update(context.data)
return data return sorted(data)
# #