Browse Source

Fix edit-show alert "set master" malfunction on shows with no master to edit.

tags/release_0.25.11^2
JackDandy 4 years ago
parent
commit
57a1c99176
  1. 7
      CHANGES.md
  2. 2
      gui/slick/js/editShow.js

7
CHANGES.md

@ -1,4 +1,9 @@
### 0.25.10 (2021-10-12 11:55:00 UTC)
### 0.25.11 (2021-10-12 17:00:00 UTC)
* Fix edit-show alert "set master" malfunction on shows with no master to edit
### 0.25.10 (2021-10-12 11:55:00 UTC)
* Update certifi 2021.05.30 to 2021.10.08

2
gui/slick/js/editShow.js

@ -54,7 +54,7 @@ $(document).ready(function () {
}
function okExit(action){
return ('the-master' === $('input[name="set-master"]:checked').attr('id')
return ('the-master' === ($('input[name="set-master"]:checked').attr('id') || 'the-master')
|| confirm('A "set master" change is pending\n\n' + action + ' without saving changes?'))
}

Loading…
Cancel
Save