Shun Miyazawa 2 лет назад
Родитель
Сommit
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;