15230: Refactor copy to clipboard, applies to all DetailsAttribute
[arvados-workbench2.git] / src / models / resource.ts
index 2af51ecbc44e0b4595512ee4ffcd9cf32adb2d0c..239a67cc1251e88d6b6968c89a7d9b878ac9b214 100644 (file)
@@ -104,7 +104,6 @@ export const extractUuidKind = (uuid: string = '') => {
             return ResourceKind.LINK;
         default:
             const match = COLLECTION_PDH_REGEX.exec(uuid);
-            console.log("matching " + match);
             return match ? ResourceKind.COLLECTION : undefined;
     }
 };