Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.16b1 #4945

Closed
Closed

0.16b1 #4945

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions kalite/updates/static/js/updates/bundle_modules/update_videos.js
Original file line number Diff line number Diff line change
Expand Up @@ -415,10 +415,12 @@ function getSelectedStartedMetadata(data_type) {
}

function setNodeClass(node, className) {
if (node.extraClasses != className) {
node.extraClasses = className;
if (node.parent !== null) {
updateNodeClass(node.parent);
if (node !== null) {
if (node.extraClasses != className) {
node.extraClasses = className;
if (node.parent !== null) {
updateNodeClass(node.parent);
}
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion kalite/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Must also be of the form N.N.N for internal use, where N is a non-negative integer
MAJOR_VERSION = "0"
MINOR_VERSION = "16"
PATCH_VERSION = "0"
PATCH_VERSION = "b1"
VERSION = "%s.%s.%s" % (MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION)
SHORTVERSION = "%s.%s" % (MAJOR_VERSION, MINOR_VERSION)

Expand Down