Skip to content

Commit b29b9db

Browse files
Fix workflows sync.
1 parent 266d795 commit b29b9db

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cli/Squidex.CLI/Squidex.CLI/Commands/Implementation/Sync/Workflows/WorkflowsSynchronizer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ await log.DoSafeAsync($"Workflow '{workflow.Name}' creating", async () =>
121121
}
122122

123123
var schemas = await session.Schemas.GetSchemasAsync(session.App);
124-
var schemaMap = schemas.Items.ToDictionary(x => x.Id, x => x.Name);
124+
var schemaMap = schemas.Items.ToDictionary(x => x.Name, x => x.Id);
125125

126126
foreach (var workflow in models)
127127
{

cli/Squidex.CLI/Squidex.CLI/Squidex.CLI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<TargetFramework>net5.0</TargetFramework>
1515
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
1616
<ToolCommandName>sq</ToolCommandName>
17-
<Version>7.18</Version>
17+
<Version>7.19</Version>
1818
</PropertyGroup>
1919
<ItemGroup>
2020
<None Remove="Commands\Implementation\OpenLibrary\Structure\schemas\author.json" />

0 commit comments

Comments
 (0)