Skip to content

Commit

Permalink
Fix workflows sync.
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianStehle committed Oct 21, 2021
1 parent 266d795 commit b29b9db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ await log.DoSafeAsync($"Workflow '{workflow.Name}' creating", async () =>
}

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

foreach (var workflow in models)
{
Expand Down
2 changes: 1 addition & 1 deletion cli/Squidex.CLI/Squidex.CLI/Squidex.CLI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<TargetFramework>net5.0</TargetFramework>
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
<ToolCommandName>sq</ToolCommandName>
<Version>7.18</Version>
<Version>7.19</Version>
</PropertyGroup>
<ItemGroup>
<None Remove="Commands\Implementation\OpenLibrary\Structure\schemas\author.json" />
Expand Down

0 comments on commit b29b9db

Please sign in to comment.