diff --git a/SharpRss/SharpRss.csproj b/SharpRss/SharpRss.csproj index 6b6e01d..f57dac4 100644 --- a/SharpRss/SharpRss.csproj +++ b/SharpRss/SharpRss.csproj @@ -11,10 +11,10 @@ - + - - + + diff --git a/ToolQit b/ToolQit index 0f3a3fb..9a766eb 160000 --- a/ToolQit +++ b/ToolQit @@ -1 +1 @@ -Subproject commit 0f3a3fb0f9145aad31a44eb25159d0f2a5a1c7fd +Subproject commit 9a766eb353a8ec462410f128e774804ec715cefd diff --git a/WebSharpRSS/Pages/List.razor b/WebSharpRSS/Pages/List.razor index 38fd7f5..b21f276 100644 --- a/WebSharpRSS/Pages/List.razor +++ b/WebSharpRSS/Pages/List.razor @@ -5,6 +5,7 @@ @inject IDialogService _dialogService; @inject SyndicationService _syndicationService; +@_title
@if (_isLoading) { @@ -45,6 +46,8 @@ Task.Run(async () => await LoadItems()); } } + + private string _title { get; set; } = "List syndication - SharpRss"; private string? _cid; HashSet items = new HashSet(); bool _isLoading = true; diff --git a/WebSharpRSS/Pages/Modify.razor b/WebSharpRSS/Pages/Modify.razor new file mode 100644 index 0000000..5bf7e78 --- /dev/null +++ b/WebSharpRSS/Pages/Modify.razor @@ -0,0 +1,12 @@ +@page "/Modify" +

Modify

+ +@code { + [Parameter] + [SupplyParameterFromQuery(Name = "cid")] + public string CategoryId { get; set; } = string.Empty; + [Parameter] + [SupplyParameterFromQuery(Name = "sid")] + public string SyndicationId { get; set; } = string.Empty; + +} \ No newline at end of file diff --git a/WebSharpRSS/WebSharpRSS.csproj b/WebSharpRSS/WebSharpRSS.csproj index be2aca9..d1e77aa 100644 --- a/WebSharpRSS/WebSharpRSS.csproj +++ b/WebSharpRSS/WebSharpRSS.csproj @@ -16,7 +16,7 @@ - + diff --git a/WebSharpRSS/sharp_rss.sqlite b/WebSharpRSS/sharp_rss.sqlite index 8627a81..9569dac 100644 Binary files a/WebSharpRSS/sharp_rss.sqlite and b/WebSharpRSS/sharp_rss.sqlite differ