diff --git a/client/src/app/instance/store/effects/search.effects.ts b/client/src/app/instance/store/effects/search.effects.ts
index 9516c082b3af6a4a318ad23cd7c6f458bf8bb16e..d40af8c60d800596e0af98e9f6dc84cbd91348cc 100644
--- a/client/src/app/instance/store/effects/search.effects.ts
+++ b/client/src/app/instance/store/effects/search.effects.ts
@@ -156,6 +156,7 @@ export class SearchEffects {
                     // Build default output list with the attribute list metamodel configuration
                     defaultOutputList = attributeList
                         .filter(attribute => attribute.selected && attribute.id_output_category)
+                        .sort((a, b) => a.output_display - b.output_display)
                         .map(attribute => attribute.id);
                 }