Shun Miyazawa пре 2 година
родитељ
комит
8068c7e283
1 измењених фајлова са 1 додато и 5 уклоњено
  1. 1 5
      packages/editor/src/services/link-util/Linker.ts

+ 1 - 5
packages/editor/src/services/link-util/Linker.ts

@@ -8,11 +8,7 @@ export default class Linker {
 
   link: string | undefined;
 
-  constructor(
-      type: string = Linker.types.markdownLink,
-      label = '',
-      link = '',
-  ) {
+  constructor(type = Linker.types.markdownLink, label = '', link = '') {
     this.type = type;
     this.label = label;
     this.link = link;