Skip to content

Commit 3a1b71f

Browse files
committed
Fix for duplicate app names in the import pages panel
1 parent e62d39e commit 3a1b71f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Low Code App Editor_1/Controllers/AppEditor/Pages/EditorPagesImportController.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public static void Load(this AppEditorPagesImport editor, App selectedApp, IEnum
2525
{
2626
editor.SelectedApp = selectedApp;
2727
editor.Apps.Options.Clear();
28-
editor.Apps.Options.AddRange(apps.Select(app => Option.Create(app.Name, app)));
28+
editor.Apps.Options.AddRange(apps.Select(app => Option.Create($"[{app.LatestVersion.ID}] - {app.Name}", app)));
2929

3030
var defaultSelected = editor.Apps.Options.FirstOrDefault();
3131
if(defaultSelected == null)

0 commit comments

Comments
 (0)