LP1823367 Angular lint repairs
[evergreen-equinox.git] / Open-ILS / src / eg2 / src / app / staff / catalog / record / conjoined.component.ts
index 560214f..b4d6274 100644 (file)
@@ -73,8 +73,9 @@ export class ConjoinedComponent implements OnInit {
         if (this.idsToUnlink.length === 0) { return; }
 
         try { // rejects on dismiss, which results in an Error
+            // TODO this will change with LP #1823041
             await this.confirmUnlink.open({size: 'sm'});
-        } catch (dismissed) {return;}
+        } catch (dismissed) { return; }
 
         const maps = [];
         this.pcrud.search('bpbcm',
@@ -90,7 +91,7 @@ export class ConjoinedComponent implements OnInit {
                         this.idsToUnlink = [];
                         this.grid.reload();
                     }
-                )
+                );
             }
         );
     }