Fixes an issue where creating new copy alerts / notes failed for brand
new copies.
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Signed-off-by: Galen Charlton <gmc@equinoxOLI.org>
// In manage mode, we can only manage a single copy.
// But in create mode, we can add alerts to multiple copies.
- if (this.copyIds.length === 1) {
+ if (this.copyIds.length === 1 && !this.inPlaceCreateMode) {
this.mode = 'manage';
} else {
this.mode = 'create';
// In manage mode, we can only manage a single copy.
// But in create mode, we can add notes to multiple copies.
- if (this.copyIds.length === 1) {
+ if (this.copyIds.length === 1 && !this.inPlaceCreateMode) {
this.mode = 'manage';
} else {
this.mode = 'create';