@yuuvis/app-drive 2.0.8 → 2.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -497,7 +497,7 @@ class DriveService {
497
497
  return validateNames
498
498
  ? this.validateNames(objects.filter((o) => o.sots.includes(FS_SOTS.object)).map((f) => f.data[FS_PROPERTIES.name]), folderId).pipe(switchMap((res) => {
499
499
  if (res.existingFileNames?.length || res.invalidFileNames?.length) {
500
- console.log('VALIDATION: ', { res });
500
+ //console.log('VALIDATION: ', { res });
501
501
  this.#resolveNameConflicts({
502
502
  existingFileNames: res.existingFileNames,
503
503
  invalidFileNames: res.invalidFileNames,
@@ -605,7 +605,7 @@ class DriveService {
605
605
  * @returns already existing names
606
606
  */
607
607
  validateNames(names, parentId) {
608
- console.log({ names, parentId });
608
+ //console.log({ names, parentId });
609
609
  if (parentId === DRIVE_ROOT_FOLDER_ID)
610
610
  parentId = undefined;
611
611
  const dvp = {
@@ -907,7 +907,7 @@ class RenameComponent {
907
907
  source: this.changedValue,
908
908
  computation: () => {
909
909
  const name = this.formComp().nameForm.value.name;
910
- console.log('disabledSubmit', name, this.busy(), this.disabled(), this.formComp().nameForm.invalid);
910
+ //console.log('disabledSubmit', name, this.busy(), this.disabled(), this.formComp().nameForm.invalid);
911
911
  return !name || this.busy() || this.disabled() || this.formComp().nameForm.invalid;
912
912
  }
913
913
  });