diff --git a/src/Squidex/app/features/content/shared/array-editor.component.html b/src/Squidex/app/features/content/shared/array-editor.component.html index e7528a2e5..d881c1d6d 100644 --- a/src/Squidex/app/features/content/shared/array-editor.component.html +++ b/src/Squidex/app/features/content/shared/array-editor.component.html @@ -1,7 +1,6 @@
+ (sqxSorted)="sort($event)">
+ (sqxSorted)="sortAssets($event)">
diff --git a/src/Squidex/app/features/content/shared/references-editor.component.html b/src/Squidex/app/features/content/shared/references-editor.component.html index 055438a9e..7fbb63a25 100644 --- a/src/Squidex/app/features/content/shared/references-editor.component.html +++ b/src/Squidex/app/features/content/shared/references-editor.component.html @@ -8,8 +8,7 @@ + (sqxSorted)="sort($event)"> -
+
diff --git a/src/Squidex/app/features/schemas/pages/schema/schema-page.component.html b/src/Squidex/app/features/schemas/pages/schema/schema-page.component.html index 8d49594d6..f012138cb 100644 --- a/src/Squidex/app/features/schemas/pages/schema/schema-page.component.html +++ b/src/Squidex/app/features/schemas/pages/schema/schema-page.component.html @@ -62,8 +62,7 @@
+ (sqxSorted)="sortFields($event)">
diff --git a/src/Squidex/app/features/settings/pages/languages/language.component.html b/src/Squidex/app/features/settings/pages/languages/language.component.html index 478e3ce97..2b9e16be6 100644 --- a/src/Squidex/app/features/settings/pages/languages/language.component.html +++ b/src/Squidex/app/features/settings/pages/languages/language.component.html @@ -38,7 +38,7 @@
-
+
diff --git a/src/Squidex/app/framework/angular/sorted.directive.ts b/src/Squidex/app/framework/angular/sorted.directive.ts index 80d7c56ff..7677b07e5 100644 --- a/src/Squidex/app/framework/angular/sorted.directive.ts +++ b/src/Squidex/app/framework/angular/sorted.directive.ts @@ -16,7 +16,7 @@ export class SortedDirective implements OnDestroy, OnInit { private sortable: Sortable; @Input() - public dragHandle: string; + public dragHandle = '.drag-handle'; @Input('sqxSortModel') public sortModel: any[];