Skip to content

Commit

Permalink
Merge pull request #29 from eliasson/housekeeping
Browse files Browse the repository at this point in the history
Housekeeping
  • Loading branch information
eliasson authored Jul 21, 2024
2 parents 164509f + bdd8941 commit ed48b9e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ services:
environment:
- POSTGRES_USER=sa01
- POSTGRES_PASSWORD=local
- POSTGRES_DB=quarter
volumes:
- quarter_data:/var/lib/postgresql/data/
- ./init.sql:/docker-entrypoint-initdb.d/10-init.sql

volumes:
quarter_data:
quarter_data:
2 changes: 1 addition & 1 deletion src/Quarter.Core/Quarter.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<PackageReference Include="FluentMigrator.Runner" Version="5.0.0"/>
<PackageReference Include="FluentMigrator.Runner.Postgres" Version="5.0.0"/>
<PackageReference Include="Microsoft.AspNetCore.Components" Version="8.0.2"/>
<PackageReference Include="Npgsql" Version="8.0.2"/>
<PackageReference Include="Npgsql" Version="8.0.3" />
<PackageReference Include="System.Linq.Async" Version="6.0.1"/>
</ItemGroup>
</Project>
4 changes: 2 additions & 2 deletions src/Quarter/Components/Navigation/PageNavigationItem.razor
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
public NavLinkMatch Match { get; set; } = NavLinkMatch.All;

[Parameter(CaptureUnmatchedValues = true)]
public Dictionary<string, object> InputAttributes { get; set; } = new Dictionary<string, object>();
public Dictionary<string, object?> InputAttributes { get; set; } = new Dictionary<string, object?>();

private MarkupString Icon
=> new MarkupString(@$"<svg class=""q-icon""><use xlink:href=""{IconRef}""></use></svg>");
}
}

0 comments on commit ed48b9e

Please sign in to comment.