Skip to content

Commit

Permalink
Merge pull request #690 from KhalisFoundation/master
Browse files Browse the repository at this point in the history
Release 5.2.1
  • Loading branch information
tsingh777 authored Jul 2, 2019
2 parents 38c0486 + f66df9c commit d4215c6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"productName": "SikhiToTheMax",
"name": "sttm-desktop",
"version": "5.2.0",
"version": "5.2.1",
"description": "The SikhiToTheMax desktop app",
"main": "app.js",
"scripts": {
Expand Down
6 changes: 4 additions & 2 deletions www/js/theme_editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,10 @@ const updateCeremonyThemeTiles = () => {
document.querySelectorAll('.ceremony-pane-themes .theme-instance').forEach(el => el.remove());

const anandKarajPane = document.querySelector('.ceremony-pane-themes#anandkaraj');
swatchGroupFactory('anandkaraj', anandKarajPane);
anandKarajPane.appendChild(swatchFactory(currentTheme, false, 'Current Theme'));
if (anandKarajPane) {
swatchGroupFactory('anandkaraj', anandKarajPane);
anandKarajPane.appendChild(swatchFactory(currentTheme, false, 'Current Theme'));
}
};

const imageInput = themesContainer =>
Expand Down

0 comments on commit d4215c6

Please sign in to comment.