Skip to content

Commit eb6dad4

Browse files
authored
doc(Display): update xml documentation (#7626)
1 parent 4b2f98c commit eb6dad4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/BootstrapBlazor/Components/Display/Display.razor.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,31 +35,31 @@ public partial class Display<TValue> : ILookup
3535
public string? FormatString { get; set; }
3636

3737
/// <summary>
38-
/// <inheritdoc/>
38+
/// <inheritdoc cref="ILookup.Lookup"/>
3939
/// </summary>
4040
[Parameter]
4141
public IEnumerable<SelectedItem>? Lookup { get; set; }
4242

4343
/// <summary>
44-
/// <inheritdoc/>
44+
/// <inheritdoc cref="ILookup.LookupService"/>
4545
/// </summary>
4646
[Parameter]
4747
public ILookupService? LookupService { get; set; }
4848

4949
/// <summary>
50-
/// <inheritdoc/>
50+
/// <inheritdoc cref="ILookup.LookupServiceKey"/>
5151
/// </summary>
5252
[Parameter]
5353
public string? LookupServiceKey { get; set; }
5454

5555
/// <summary>
56-
/// <inheritdoc/>
56+
/// <inheritdoc cref="ILookup.LookupServiceData"/>
5757
/// </summary>
5858
[Parameter]
5959
public object? LookupServiceData { get; set; }
6060

6161
/// <summary>
62-
/// <inheritdoc/>
62+
/// <inheritdoc cref="ILookup.LookupStringComparison"/>
6363
/// </summary>
6464
[Parameter]
6565
public StringComparison LookupStringComparison { get; set; } = StringComparison.OrdinalIgnoreCase;

0 commit comments

Comments
 (0)